00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #if !defined( SEMAPHORE_H )
00040 #define SEMAPHORE_H
00041
00042 #undef PTW32_LEVEL
00043
00044 #if defined(_POSIX_SOURCE)
00045 #define PTW32_LEVEL 0
00046
00047 #endif
00048
00049 #if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 199309
00050 #undef PTW32_LEVEL
00051 #define PTW32_LEVEL 1
00052
00053 #endif
00054
00055 #if defined(INCLUDE_NP)
00056 #undef PTW32_LEVEL
00057 #define PTW32_LEVEL 2
00058
00059 #endif
00060
00061 #define PTW32_LEVEL_MAX 3
00062
00063 #if !defined(PTW32_LEVEL)
00064 #define PTW32_LEVEL PTW32_LEVEL_MAX
00065
00066 #endif
00067
00068 #if __GNUC__ && ! defined (__declspec)
00069 # error Please upgrade your GNU compiler to one that supports __declspec.
00070 #endif
00071
00072
00073
00074
00075
00076
00077
00078 #ifdef PTW32_BUILD
00079 # define PTW32_DLLPORT __declspec (dllexport)
00080 #else
00081 # define PTW32_DLLPORT __declspec (dllimport)
00082 #endif
00083
00084
00085
00086
00087
00088
00089
00090 #ifndef PTW32_CONFIG_H
00091 # if defined(WINCE)
00092 # define NEED_ERRNO
00093 # define NEED_SEM
00094 # endif
00095 # if defined(_UWIN) || defined(__MINGW32__)
00096 # define HAVE_MODE_T
00097 # endif
00098 #endif
00099
00100
00101
00102
00103
00104 #if PTW32_LEVEL >= PTW32_LEVEL_MAX
00105 #ifdef NEED_ERRNO
00106 #include "need_errno.h"
00107 #else
00108 #include <errno.h>
00109 #endif
00110 #endif
00111
00112 #define _POSIX_SEMAPHORES
00113
00114 #ifdef __cplusplus
00115 extern "C"
00116 {
00117 #endif
00118
00119 #ifndef HAVE_MODE_T
00120 typedef unsigned int mode_t;
00121 #endif
00122
00123
00124 typedef struct sem_t_ * sem_t;
00125
00126 PTW32_DLLPORT int sem_init (sem_t * sem,
00127 int pshared,
00128 unsigned int value);
00129
00130 PTW32_DLLPORT int sem_destroy (sem_t * sem);
00131
00132 PTW32_DLLPORT int sem_trywait (sem_t * sem);
00133
00134 PTW32_DLLPORT int sem_wait (sem_t * sem);
00135
00136 PTW32_DLLPORT int sem_timedwait (sem_t * sem,
00137 const struct timespec * abstime);
00138
00139 PTW32_DLLPORT int sem_post (sem_t * sem);
00140
00141 PTW32_DLLPORT int sem_post_multiple (sem_t * sem,
00142 int count);
00143
00144 PTW32_DLLPORT int sem_open (const char * name,
00145 int oflag,
00146 mode_t mode,
00147 unsigned int value);
00148
00149 PTW32_DLLPORT int sem_close (sem_t * sem);
00150
00151 PTW32_DLLPORT int sem_unlink (const char * name);
00152
00153 PTW32_DLLPORT int sem_getvalue (sem_t * sem,
00154 int * sval);
00155
00156 #ifdef __cplusplus
00157 }
00158 #endif
00159
00160 #undef PTW32_LEVEL
00161 #undef PTW32_LEVEL_MAX
00162
00163 #endif