thread.h
来自「mms client」· C头文件 代码 · 共 87 行
H
87 行
/* * thread.h - thread manipulation */#ifndef GW_THREAD_H#define GW_THREAD_H#include "config.h"#if !HAVE_PTHREAD_H#error "You need Posix threads and <pthread.h>"#endif#include <pthread.h>/* * Wrapper around pthread_mutex_t to avoid problems with recursive calls * to pthread_mutex_trylock on Linux (at least). */typedef struct { pthread_mutex_t mutex; long owner; int dynamic;#ifdef MUTEX_STATS unsigned char *filename; int lineno; long locks; long collisions;#endif} Mutex;/* * Create a Mutex. */#ifdef MUTEX_STATS#define mutex_create() gw_claim_area(mutex_make_measured(mutex_create_real(), \ __FILE__, __LINE__))#else#define mutex_create() gw_claim_area(mutex_create_real())#endif/* * Create a Mutex. Call these functions via the macro defined above. */Mutex *mutex_create_measured(Mutex *mutex, unsigned char *filename, int lineno);Mutex *mutex_create_real(void);/* * Initialize a statically allocated Mutex. We need those inside gwlib * modules that are in turn used by the mutex wrapper, such as "gwmem" and * "protected". */#ifdef MUTEX_STATS#define mutex_init_static(mutex) \ mutex_make_measured(mutex_init_static_real(mutex), __FILE__, __LINE__)#else#define mutex_init_static(mutex) \ mutex_init_static_real(mutex)#endifMutex *mutex_init_static_real(Mutex *mutex);/* * Destroy a Mutex. */void mutex_destroy(Mutex *mutex);/* lock given mutex. PANIC if fails (non-initialized mutex or other * coding error) */ #define mutex_lock(m) mutex_lock_real(m, __FILE__, __LINE__, __func__)void mutex_lock_real(Mutex *mutex, char *file, int line, const char *func);/* unlock given mutex, PANIC if fails (so do not call for non-locked) *//* returns 0 if ok 1 if failure for debugging */#define mutex_unlock(m) mutex_unlock_real(m, __FILE__, __LINE__, __func__)int mutex_unlock_real(Mutex *mutex, char *file, int line, const char *func);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?