1 Star 0 Fork 1

shivkant/onvif_discovery

forked from YaYa/onvif_discovery 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
threads.h 6.45 KB
一键复制 编辑 原始数据 按行查看 历史
FREELANCER 提交于 2015-11-26 17:01 . add all source
/*
threads.h
Portable threads and locks API
gSOAP XML Web services tools
Copyright (C) 2000-2010, Robert van Engelen, Genivia Inc., All Rights Reserved.
This part of the software is released under one of the following licenses:
GPL, the gSOAP public license, or Genivia's license for commercial use.
--------------------------------------------------------------------------------
gSOAP public license.
The contents of this file are subject to the gSOAP Public License Version 1.3
(the "License"); you may not use this file except in compliance with the
License. You may obtain a copy of the License at
http://www.cs.fsu.edu/~engelen/soaplicense.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the License.
The Initial Developer of the Original Code is Robert A. van Engelen.
Copyright (C) 2000-2010, Robert van Engelen, Genivia Inc., All Rights Reserved.
--------------------------------------------------------------------------------
GPL license.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA
Author contact information:
This program is released under the GPL with the additional exemption that
compiling, linking, and/or using OpenSSL is allowed.
--------------------------------------------------------------------------------
A commercial use license is available from Genivia, Inc., [email protected]
--------------------------------------------------------------------------------
*/
/**
@page threads Portable threads and locking support
The threads.h and threads.c code define the following portable API:
- THREAD_TYPE portable thread type
- THREAD_ID returns current thread ID of type THREAD_TYPE*
- THREAD_CREATE(t,f,a) start a thread (THREAD_TYPE*)t that calls f(a)
- THREAD_DETACH(t) detach thread (THREAD_TYPE*)t
- THREAD_JOIN(t) wait to join (THREAD_TYPE*)t
- THREAD_EXIT exit the current thread
- THREAD_CANCEL(t) kill a thread, dangerous, use only in extreme cases!
- MUTEX_TYPE portable mutex type
- MUTEX_INITIALIZER global initializer value for static locks
- MUTEX_SETUP(m) setup lock (MUTEX_TYPE*)m
- MUTEX_CLEANUP(m) cleanup lock (MUTEX_TYPE*)m
- MUTEX_LOCK(m) acquire lock (MUTEX_TYPE*)m
- MUTEX_UNLOCK(m) release lock (MUTEX_TYPE*)m
- COND_TYPE portable condition variable type
- COND_SETUP(c) setup condition variable (COND_TYPE*)c
- COND_CLEANUP(c) cleanup condition variable (COND_TYPE*)c
- COND_SIGNAL(c) signal condition variable (COND_TYPE*)c
- COND_WAIT(c,m) wait on variable (COND_TYPE*)c in mutex (MUTEX_TYPE*)m
*/
#ifndef THREADS_H
#define THREADS_H
#ifndef WIN32
# include <unistd.h> /* defines _POSIX_THREADS if pthreads are available */
#else
# define ssize_t int
# include <io.h>
# include <sys/types.h>
# include <process.h>
# include <windows.h>
#endif
#if defined(_POSIX_THREADS) || defined(_SC_THREADS)
# include <pthread.h>
#endif
/******************************************************************************\
*
* Threads
*
\******************************************************************************/
#if defined(WIN32)
# define THREAD_TYPE HANDLE
# define THREAD_ID GetCurrentThreadId()
# define THREAD_CREATE(x,y,z) *(x) = (HANDLE)_beginthread((y), 8*4096, (z))
# define THREAD_DETACH(x)
# define THREAD_JOIN(x) WaitForSingleObject((x), INFINITE)
# define THREAD_EXIT _endthread()
# define THREAD_CANCEL(x) TerminateThread(x, 0)
# define MUTEX_TYPE HANDLE
# define MUTEX_INITIALIZER NULL
# define MUTEX_SETUP(x) (x) = CreateMutex(NULL, FALSE, NULL)
# define MUTEX_CLEANUP(x) (CloseHandle(x) == 0)
# define MUTEX_LOCK(x) emulate_pthread_mutex_lock(&(x))
# define MUTEX_UNLOCK(x) (ReleaseMutex(x) == 0)
# define COND_SETUP(x) emulate_pthread_cond_init(&(x))
# define COND_CLEANUP(x) emulate_pthread_cond_destroy(&(x))
# define COND_SIGNAL(x) emulate_pthread_cond_signal(&(x))
# define COND_WAIT(x,y) emulate_pthread_cond_wait(&(x), &(y))
typedef struct
{ UINT waiters_count_;
CRITICAL_SECTION waiters_count_lock_;
HANDLE signal_event_;
} COND_TYPE;
#ifdef __cplusplus
extern "C" {
#endif
int emulate_pthread_mutex_lock(volatile MUTEX_TYPE*);
int emulate_pthread_cond_init(COND_TYPE*);
int emulate_pthread_cond_destroy(COND_TYPE*);
int emulate_pthread_cond_signal(COND_TYPE*);
int emulate_pthread_cond_wait(COND_TYPE*, MUTEX_TYPE*);
#ifdef __cplusplus
}
#endif
#elif defined(_POSIX_THREADS) || defined(_SC_THREADS)
# define THREAD_TYPE pthread_t
# define THREAD_ID pthread_self()
# define THREAD_CREATE(x,y,z) pthread_create((x), NULL, (y), (z))
# define THREAD_DETACH(x) pthread_detach((x))
# define THREAD_JOIN(x) pthread_join((x), NULL)
# define THREAD_EXIT pthread_exit(NULL)
# define THREAD_CANCEL(x) pthread_cancel(x)
# define MUTEX_TYPE pthread_mutex_t
# define MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
# define MUTEX_SETUP(x) pthread_mutex_init(&(x), NULL)
# define MUTEX_CLEANUP(x) pthread_mutex_destroy(&(x))
#if 0 /* 1: DEBUG MUTEX */
# define MUTEX_LOCK(x) (fprintf(stderr, "! LOCK %p %s:%d\n", &x, __FILE__, __LINE__), pthread_mutex_lock(&(x)))
# define MUTEX_UNLOCK(x) (fprintf(stderr, "! UNLOCK %p %s:%d\n", &x, __FILE__, __LINE__), pthread_mutex_unlock(&(x)))
#else
# define MUTEX_LOCK(x) pthread_mutex_lock(&(x))
# define MUTEX_UNLOCK(x) pthread_mutex_unlock(&(x))
#endif
# define COND_TYPE pthread_cond_t
# define COND_SETUP(x) pthread_cond_init(&(x), NULL)
# define COND_CLEANUP(x) pthread_cond_destroy(&(x))
# define COND_SIGNAL(x) pthread_cond_signal(&(x))
# define COND_WAIT(x,y) pthread_cond_wait(&(x), &(y))
#else
# error "No POSIX threads detected: we need thread and mutex operations. See for example OpenSSL /threads/th-lock.c on how to implement mutex on your platform"
#endif
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shiv50084/onvif_discovery.git
[email protected]:shiv50084/onvif_discovery.git
shiv50084
onvif_discovery
onvif_discovery
master

搜索帮助