pthread.h
上传用户:zhenyu
上传日期:2022-04-24
资源大小:268k
文件大小:42k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. /* This is an implementation of the threads API of POSIX 1003.1-2001.
  2.  *
  3.  * --------------------------------------------------------------------------
  4.  *
  5.  *      Pthreads-win32 - POSIX Threads Library for Win32
  6.  *      Copyright(C) 1998 John E. Bossom
  7.  *      Copyright(C) 1999,2005 Pthreads-win32 contributors
  8.  * 
  9.  *      Contact Email: rpj@callisto.canberra.edu.au
  10.  * 
  11.  *      The current list of contributors is contained
  12.  *      in the file CONTRIBUTORS included with the source
  13.  *      code distribution. The list can also be seen at the
  14.  *      following World Wide Web location:
  15.  *      http://sources.redhat.com/pthreads-win32/contributors.html
  16.  * 
  17.  *      This library is free software; you can redistribute it and/or
  18.  *      modify it under the terms of the GNU Lesser General Public
  19.  *      License as published by the Free Software Foundation; either
  20.  *      version 2 of the License, or (at your option) any later version.
  21.  * 
  22.  *      This library is distributed in the hope that it will be useful,
  23.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  24.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  25.  *      Lesser General Public License for more details.
  26.  * 
  27.  *      You should have received a copy of the GNU Lesser General Public
  28.  *      License along with this library in the file COPYING.LIB;
  29.  *      if not, write to the Free Software Foundation, Inc.,
  30.  *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  31.  */
  32. #if !defined( PTHREAD_H )
  33. #define PTHREAD_H
  34. /*
  35.  * See the README file for an explanation of the pthreads-win32 version
  36.  * numbering scheme and how the DLL is named etc.
  37.  */
  38. #define PTW32_VERSION 2,8,0,0
  39. #define PTW32_VERSION_STRING "2, 8, 0, 0"
  40. /* There are three implementations of cancel cleanup.
  41.  * Note that pthread.h is included in both application
  42.  * compilation units and also internally for the library.
  43.  * The code here and within the library aims to work
  44.  * for all reasonable combinations of environments.
  45.  *
  46.  * The three implementations are:
  47.  *
  48.  *   WIN32 SEH
  49.  *   C
  50.  *   C++
  51.  *
  52.  * Please note that exiting a push/pop block via
  53.  * "return", "exit", "break", or "continue" will
  54.  * lead to different behaviour amongst applications
  55.  * depending upon whether the library was built
  56.  * using SEH, C++, or C. For example, a library built
  57.  * with SEH will call the cleanup routine, while both
  58.  * C++ and C built versions will not.
  59.  */
  60. /*
  61.  * Define defaults for cleanup code.
  62.  * Note: Unless the build explicitly defines one of the following, then
  63.  * we default to standard C style cleanup. This style uses setjmp/longjmp
  64.  * in the cancelation and thread exit implementations and therefore won't
  65.  * do stack unwinding if linked to applications that have it (e.g.
  66.  * C++ apps). This is currently consistent with most/all commercial Unix
  67.  * POSIX threads implementations.
  68.  */
  69. #if !defined( __CLEANUP_SEH ) && !defined( __CLEANUP_CXX ) && !defined( __CLEANUP_C )
  70. # define __CLEANUP_C
  71. #endif
  72. #if defined( __CLEANUP_SEH ) && ( !defined( _MSC_VER ) && !defined(PTW32_RC_MSC))
  73. #error ERROR [__FILE__, line __LINE__]: SEH is not supported for this compiler.
  74. #endif
  75. /*
  76.  * Stop here if we are being included by the resource compiler.
  77.  */
  78. #ifndef RC_INVOKED
  79. #undef PTW32_LEVEL
  80. #if defined(_POSIX_SOURCE)
  81. #define PTW32_LEVEL 0
  82. /* Early POSIX */
  83. #endif
  84. #if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 199309
  85. #undef PTW32_LEVEL
  86. #define PTW32_LEVEL 1
  87. /* Include 1b, 1c and 1d */
  88. #endif
  89. #if defined(INCLUDE_NP)
  90. #undef PTW32_LEVEL
  91. #define PTW32_LEVEL 2
  92. /* Include Non-Portable extensions */
  93. #endif
  94. #define PTW32_LEVEL_MAX 3
  95. #if !defined(PTW32_LEVEL)
  96. #define PTW32_LEVEL PTW32_LEVEL_MAX
  97. /* Include everything */
  98. #endif
  99. #ifdef _UWIN
  100. #   define HAVE_STRUCT_TIMESPEC 1
  101. #   define HAVE_SIGNAL_H        1
  102. #   undef HAVE_CONFIG_H
  103. #   pragma comment(lib, "pthread")
  104. #endif
  105. /*
  106.  * -------------------------------------------------------------
  107.  *
  108.  *
  109.  * Module: pthread.h
  110.  *
  111.  * Purpose:
  112.  *      Provides an implementation of PThreads based upon the
  113.  *      standard:
  114.  *
  115.  *              POSIX 1003.1-2001
  116.  *  and
  117.  *    The Single Unix Specification version 3
  118.  *
  119.  *    (these two are equivalent)
  120.  *
  121.  *      in order to enhance code portability between Windows,
  122.  *  various commercial Unix implementations, and Linux.
  123.  *
  124.  *      See the ANNOUNCE file for a full list of conforming
  125.  *      routines and defined constants, and a list of missing
  126.  *      routines and constants not defined in this implementation.
  127.  *
  128.  * Authors:
  129.  *      There have been many contributors to this library.
  130.  *      The initial implementation was contributed by
  131.  *      John Bossom, and several others have provided major
  132.  *      sections or revisions of parts of the implementation.
  133.  *      Often significant effort has been contributed to
  134.  *      find and fix important bugs and other problems to
  135.  *      improve the reliability of the library, which sometimes
  136.  *      is not reflected in the amount of code which changed as
  137.  *      result.
  138.  *      As much as possible, the contributors are acknowledged
  139.  *      in the ChangeLog file in the source code distribution
  140.  *      where their changes are noted in detail.
  141.  *
  142.  *      Contributors are listed in the CONTRIBUTORS file.
  143.  *
  144.  *      As usual, all bouquets go to the contributors, and all
  145.  *      brickbats go to the project maintainer.
  146.  *
  147.  * Maintainer:
  148.  *      The code base for this project is coordinated and
  149.  *      eventually pre-tested, packaged, and made available by
  150.  *
  151.  *              Ross Johnson <rpj@callisto.canberra.edu.au>
  152.  *
  153.  * QA Testers:
  154.  *      Ultimately, the library is tested in the real world by
  155.  *      a host of competent and demanding scientists and
  156.  *      engineers who report bugs and/or provide solutions
  157.  *      which are then fixed or incorporated into subsequent
  158.  *      versions of the library. Each time a bug is fixed, a
  159.  *      test case is written to prove the fix and ensure
  160.  *      that later changes to the code don't reintroduce the
  161.  *      same error. The number of test cases is slowly growing
  162.  *      and therefore so is the code reliability.
  163.  *
  164.  * Compliance:
  165.  *      See the file ANNOUNCE for the list of implemented
  166.  *      and not-implemented routines and defined options.
  167.  *      Of course, these are all defined is this file as well.
  168.  *
  169.  * Web site:
  170.  *      The source code and other information about this library
  171.  *      are available from
  172.  *
  173.  *              http://sources.redhat.com/pthreads-win32/
  174.  *
  175.  * -------------------------------------------------------------
  176.  */
  177. /* Try to avoid including windows.h */
  178. #if defined(__MINGW32__) && defined(__cplusplus)
  179. #define PTW32_INCLUDE_WINDOWS_H
  180. #endif
  181. #ifdef PTW32_INCLUDE_WINDOWS_H
  182. #include <windows.h>
  183. #endif
  184. #if defined(_MSC_VER) && _MSC_VER < 1300 || defined(__DMC__)
  185. /*
  186.  * VC++6.0 or early compiler's header has no DWORD_PTR type.
  187.  */
  188. typedef unsigned long DWORD_PTR;
  189. #endif
  190. /*
  191.  * -----------------
  192.  * autoconf switches
  193.  * -----------------
  194.  */
  195. #if HAVE_CONFIG_H
  196. #include "config.h"
  197. #endif /* HAVE_CONFIG_H */
  198. #ifndef NEED_FTIME
  199. #include <time.h>
  200. #else /* NEED_FTIME */
  201. /* use native WIN32 time API */
  202. #endif /* NEED_FTIME */
  203. #if HAVE_SIGNAL_H
  204. #include <signal.h>
  205. #endif /* HAVE_SIGNAL_H */
  206. #include <setjmp.h>
  207. #include <limits.h>
  208. /*
  209.  * Boolean values to make us independent of system includes.
  210.  */
  211. enum {
  212.   PTW32_FALSE = 0,
  213.   PTW32_TRUE = (! PTW32_FALSE)
  214. };
  215. /*
  216.  * This is a duplicate of what is in the autoconf config.h,
  217.  * which is only used when building the pthread-win32 libraries.
  218.  */
  219. #ifndef PTW32_CONFIG_H
  220. #  if defined(WINCE)
  221. #    define NEED_ERRNO
  222. #    define NEED_SEM
  223. #  endif
  224. #  if defined(_UWIN) || defined(__MINGW32__)
  225. #    define HAVE_MODE_T
  226. #  endif
  227. #endif
  228. /*
  229.  *
  230.  */
  231. #if PTW32_LEVEL >= PTW32_LEVEL_MAX
  232. #ifdef NEED_ERRNO
  233. #include "need_errno.h"
  234. #else
  235. #include <errno.h>
  236. #endif
  237. #endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
  238. /*
  239.  * Several systems don't define some error numbers.
  240.  */
  241. #ifndef ENOTSUP
  242. #  define ENOTSUP 48   /* This is the value in Solaris. */
  243. #endif
  244. #ifndef ETIMEDOUT
  245. #  define ETIMEDOUT 10060     /* This is the value in winsock.h. */
  246. #endif
  247. #ifndef ENOSYS
  248. #  define ENOSYS 140     /* Semi-arbitrary value */
  249. #endif
  250. #ifndef EDEADLK
  251. #  ifdef EDEADLOCK
  252. #    define EDEADLK EDEADLOCK
  253. #  else
  254. #    define EDEADLK 36     /* This is the value in MSVC. */
  255. #  endif
  256. #endif
  257. #include <sched.h>
  258. /*
  259.  * To avoid including windows.h we define only those things that we
  260.  * actually need from it.
  261.  */
  262. #ifndef PTW32_INCLUDE_WINDOWS_H
  263. #ifndef HANDLE
  264. # define PTW32__HANDLE_DEF
  265. # define HANDLE void *
  266. #endif
  267. #ifndef DWORD
  268. # define PTW32__DWORD_DEF
  269. # define DWORD unsigned long
  270. #endif
  271. #endif
  272. #ifndef HAVE_STRUCT_TIMESPEC
  273. #define HAVE_STRUCT_TIMESPEC 1
  274. struct timespec {
  275.         long tv_sec;
  276.         long tv_nsec;
  277. };
  278. #endif /* HAVE_STRUCT_TIMESPEC */
  279. #ifndef SIG_BLOCK
  280. #define SIG_BLOCK 0
  281. #endif /* SIG_BLOCK */
  282. #ifndef SIG_UNBLOCK 
  283. #define SIG_UNBLOCK 1
  284. #endif /* SIG_UNBLOCK */
  285. #ifndef SIG_SETMASK
  286. #define SIG_SETMASK 2
  287. #endif /* SIG_SETMASK */
  288. #ifdef __cplusplus
  289. extern "C"
  290. {
  291. #endif                          /* __cplusplus */
  292. /*
  293.  * -------------------------------------------------------------
  294.  *
  295.  * POSIX 1003.1-2001 Options
  296.  * =========================
  297.  *
  298.  * Options are normally set in <unistd.h>, which is not provided
  299.  * with pthreads-win32.
  300.  *
  301.  * For conformance with the Single Unix Specification (version 3), all of the
  302.  * options below are defined, and have a value of either -1 (not supported)
  303.  * or 200112L (supported).
  304.  *
  305.  * These options can neither be left undefined nor have a value of 0, because
  306.  * either indicates that sysconf(), which is not implemented, may be used at
  307.  * runtime to check the status of the option.
  308.  *
  309.  * _POSIX_THREADS (== 200112L)
  310.  *                      If == 200112L, you can use threads
  311.  *
  312.  * _POSIX_THREAD_ATTR_STACKSIZE (== 200112L)
  313.  *                      If == 200112L, you can control the size of a thread's
  314.  *                      stack
  315.  *                              pthread_attr_getstacksize
  316.  *                              pthread_attr_setstacksize
  317.  *
  318.  * _POSIX_THREAD_ATTR_STACKADDR (== -1)
  319.  *                      If == 200112L, you can allocate and control a thread's
  320.  *                      stack. If not supported, the following functions
  321.  *                      will return ENOSYS, indicating they are not
  322.  *                      supported:
  323.  *                              pthread_attr_getstackaddr
  324.  *                              pthread_attr_setstackaddr
  325.  *
  326.  * _POSIX_THREAD_PRIORITY_SCHEDULING (== -1)
  327.  *                      If == 200112L, you can use realtime scheduling.
  328.  *                      This option indicates that the behaviour of some
  329.  *                      implemented functions conforms to the additional TPS
  330.  *                      requirements in the standard. E.g. rwlocks favour
  331.  *                      writers over readers when threads have equal priority.
  332.  *
  333.  * _POSIX_THREAD_PRIO_INHERIT (== -1)
  334.  *                      If == 200112L, you can create priority inheritance
  335.  *                      mutexes.
  336.  *                              pthread_mutexattr_getprotocol +
  337.  *                              pthread_mutexattr_setprotocol +
  338.  *
  339.  * _POSIX_THREAD_PRIO_PROTECT (== -1)
  340.  *                      If == 200112L, you can create priority ceiling mutexes
  341.  *                      Indicates the availability of:
  342.  *                              pthread_mutex_getprioceiling
  343.  *                              pthread_mutex_setprioceiling
  344.  *                              pthread_mutexattr_getprioceiling
  345.  *                              pthread_mutexattr_getprotocol     +
  346.  *                              pthread_mutexattr_setprioceiling
  347.  *                              pthread_mutexattr_setprotocol     +
  348.  *
  349.  * _POSIX_THREAD_PROCESS_SHARED (== -1)
  350.  *                      If set, you can create mutexes and condition
  351.  *                      variables that can be shared with another
  352.  *                      process.If set, indicates the availability
  353.  *                      of:
  354.  *                              pthread_mutexattr_getpshared
  355.  *                              pthread_mutexattr_setpshared
  356.  *                              pthread_condattr_getpshared
  357.  *                              pthread_condattr_setpshared
  358.  *
  359.  * _POSIX_THREAD_SAFE_FUNCTIONS (== 200112L)
  360.  *                      If == 200112L you can use the special *_r library
  361.  *                      functions that provide thread-safe behaviour
  362.  *
  363.  * _POSIX_READER_WRITER_LOCKS (== 200112L)
  364.  *                      If == 200112L, you can use read/write locks
  365.  *
  366.  * _POSIX_SPIN_LOCKS (== 200112L)
  367.  *                      If == 200112L, you can use spin locks
  368.  *
  369.  * _POSIX_BARRIERS (== 200112L)
  370.  *                      If == 200112L, you can use barriers
  371.  *
  372.  *      + These functions provide both 'inherit' and/or
  373.  *        'protect' protocol, based upon these macro
  374.  *        settings.
  375.  *
  376.  * -------------------------------------------------------------
  377.  */
  378. /*
  379.  * POSIX Options
  380.  */
  381. #undef _POSIX_THREADS
  382. #define _POSIX_THREADS 200112L
  383. #undef _POSIX_READER_WRITER_LOCKS
  384. #define _POSIX_READER_WRITER_LOCKS 200112L
  385. #undef _POSIX_SPIN_LOCKS
  386. #define _POSIX_SPIN_LOCKS 200112L
  387. #undef _POSIX_BARRIERS
  388. #define _POSIX_BARRIERS 200112L
  389. #undef _POSIX_THREAD_SAFE_FUNCTIONS
  390. #define _POSIX_THREAD_SAFE_FUNCTIONS 200112L
  391. #undef _POSIX_THREAD_ATTR_STACKSIZE
  392. #define _POSIX_THREAD_ATTR_STACKSIZE 200112L
  393. /*
  394.  * The following options are not supported
  395.  */
  396. #undef _POSIX_THREAD_ATTR_STACKADDR
  397. #define _POSIX_THREAD_ATTR_STACKADDR -1
  398. #undef _POSIX_THREAD_PRIO_INHERIT
  399. #define _POSIX_THREAD_PRIO_INHERIT -1
  400. #undef _POSIX_THREAD_PRIO_PROTECT
  401. #define _POSIX_THREAD_PRIO_PROTECT -1
  402. /* TPS is not fully supported.  */
  403. #undef _POSIX_THREAD_PRIORITY_SCHEDULING
  404. #define _POSIX_THREAD_PRIORITY_SCHEDULING -1
  405. #undef _POSIX_THREAD_PROCESS_SHARED
  406. #define _POSIX_THREAD_PROCESS_SHARED -1
  407. /*
  408.  * POSIX 1003.1-2001 Limits
  409.  * ===========================
  410.  *
  411.  * These limits are normally set in <limits.h>, which is not provided with
  412.  * pthreads-win32.
  413.  *
  414.  * PTHREAD_DESTRUCTOR_ITERATIONS
  415.  *                      Maximum number of attempts to destroy
  416.  *                      a thread's thread-specific data on
  417.  *                      termination (must be at least 4)
  418.  *
  419.  * PTHREAD_KEYS_MAX
  420.  *                      Maximum number of thread-specific data keys
  421.  *                      available per process (must be at least 128)
  422.  *
  423.  * PTHREAD_STACK_MIN
  424.  *                      Minimum supported stack size for a thread
  425.  *
  426.  * PTHREAD_THREADS_MAX
  427.  *                      Maximum number of threads supported per
  428.  *                      process (must be at least 64).
  429.  *
  430.  * SEM_NSEMS_MAX
  431.  *                      The maximum number of semaphores a process can have.
  432.  *                      (must be at least 256)
  433.  *
  434.  * SEM_VALUE_MAX
  435.  *                      The maximum value a semaphore can have.
  436.  *                      (must be at least 32767)
  437.  *
  438.  */
  439. #undef _POSIX_THREAD_DESTRUCTOR_ITERATIONS
  440. #define _POSIX_THREAD_DESTRUCTOR_ITERATIONS     4
  441. #undef PTHREAD_DESTRUCTOR_ITERATIONS
  442. #define PTHREAD_DESTRUCTOR_ITERATIONS           _POSIX_THREAD_DESTRUCTOR_ITERATIONS
  443. #undef _POSIX_THREAD_KEYS_MAX
  444. #define _POSIX_THREAD_KEYS_MAX                  128
  445. #undef PTHREAD_KEYS_MAX
  446. #define PTHREAD_KEYS_MAX                        _POSIX_THREAD_KEYS_MAX
  447. #undef PTHREAD_STACK_MIN
  448. #define PTHREAD_STACK_MIN                       0
  449. #undef _POSIX_THREAD_THREADS_MAX
  450. #define _POSIX_THREAD_THREADS_MAX               64
  451.   /* Arbitrary value */
  452. #undef PTHREAD_THREADS_MAX
  453. #define PTHREAD_THREADS_MAX                     2019
  454. #undef _POSIX_SEM_NSEMS_MAX
  455. #define _POSIX_SEM_NSEMS_MAX                    256
  456.   /* Arbitrary value */
  457. #undef SEM_NSEMS_MAX
  458. #define SEM_NSEMS_MAX                           1024
  459. #undef _POSIX_SEM_VALUE_MAX
  460. #define _POSIX_SEM_VALUE_MAX                    32767
  461. #undef SEM_VALUE_MAX
  462. #define SEM_VALUE_MAX                           INT_MAX
  463. #if __GNUC__ && ! defined (__declspec)
  464. # error Please upgrade your GNU compiler to one that supports __declspec.
  465. #endif
  466. /*
  467.  * When building the DLL code, you should define PTW32_BUILD so that
  468.  * the variables/functions are exported correctly. When using the DLL,
  469.  * do NOT define PTW32_BUILD, and then the variables/functions will
  470.  * be imported correctly.
  471.  */
  472. #ifndef PTW32_STATIC_LIB
  473. #  ifdef PTW32_BUILD
  474. #    define PTW32_DLLPORT __declspec (dllexport)
  475. #  else
  476. #    define PTW32_DLLPORT __declspec (dllimport)
  477. #  endif
  478. #else
  479. #  define PTW32_DLLPORT
  480. #endif
  481. /*
  482.  * The Open Watcom C/C++ compiler uses a non-standard calling convention
  483.  * that passes function args in registers unless __cdecl is explicitly specified
  484.  * in exposed function prototypes.
  485.  *
  486.  * We force all calls to cdecl even though this could slow Watcom code down
  487.  * slightly. If you know that the Watcom compiler will be used to build both
  488.  * the DLL and application, then you can probably define this as a null string.
  489.  * Remember that pthread.h (this file) is used for both the DLL and application builds.
  490.  */
  491. #define PTW32_CDECL __cdecl
  492. #if defined(_UWIN) && PTW32_LEVEL >= PTW32_LEVEL_MAX
  493. #   include     <sys/types.h>
  494. #else
  495. /*
  496.  * Generic handle type - intended to extend uniqueness beyond
  497.  * that available with a simple pointer. It should scale for either
  498.  * IA-32 or IA-64.
  499.  */
  500. typedef struct {
  501.     void * p;                   /* Pointer to actual object */
  502.     unsigned int x;             /* Extra information - reuse count etc */
  503. } ptw32_handle_t;
  504. typedef ptw32_handle_t pthread_t;
  505. typedef struct pthread_attr_t_ * pthread_attr_t;
  506. typedef struct pthread_once_t_ pthread_once_t;
  507. typedef struct pthread_key_t_ * pthread_key_t;
  508. typedef struct pthread_mutex_t_ * pthread_mutex_t;
  509. typedef struct pthread_mutexattr_t_ * pthread_mutexattr_t;
  510. typedef struct pthread_cond_t_ * pthread_cond_t;
  511. typedef struct pthread_condattr_t_ * pthread_condattr_t;
  512. #endif
  513. typedef struct pthread_rwlock_t_ * pthread_rwlock_t;
  514. typedef struct pthread_rwlockattr_t_ * pthread_rwlockattr_t;
  515. typedef struct pthread_spinlock_t_ * pthread_spinlock_t;
  516. typedef struct pthread_barrier_t_ * pthread_barrier_t;
  517. typedef struct pthread_barrierattr_t_ * pthread_barrierattr_t;
  518. /*
  519.  * ====================
  520.  * ====================
  521.  * POSIX Threads
  522.  * ====================
  523.  * ====================
  524.  */
  525. enum {
  526. /*
  527.  * pthread_attr_{get,set}detachstate
  528.  */
  529.   PTHREAD_CREATE_JOINABLE       = 0,  /* Default */
  530.   PTHREAD_CREATE_DETACHED       = 1,
  531. /*
  532.  * pthread_attr_{get,set}inheritsched
  533.  */
  534.   PTHREAD_INHERIT_SCHED         = 0,
  535.   PTHREAD_EXPLICIT_SCHED        = 1,  /* Default */
  536. /*
  537.  * pthread_{get,set}scope
  538.  */
  539.   PTHREAD_SCOPE_PROCESS         = 0,
  540.   PTHREAD_SCOPE_SYSTEM          = 1,  /* Default */
  541. /*
  542.  * pthread_setcancelstate paramters
  543.  */
  544.   PTHREAD_CANCEL_ENABLE         = 0,  /* Default */
  545.   PTHREAD_CANCEL_DISABLE        = 1,
  546. /*
  547.  * pthread_setcanceltype parameters
  548.  */
  549.   PTHREAD_CANCEL_ASYNCHRONOUS   = 0,
  550.   PTHREAD_CANCEL_DEFERRED       = 1,  /* Default */
  551. /*
  552.  * pthread_mutexattr_{get,set}pshared
  553.  * pthread_condattr_{get,set}pshared
  554.  */
  555.   PTHREAD_PROCESS_PRIVATE       = 0,
  556.   PTHREAD_PROCESS_SHARED        = 1,
  557. /*
  558.  * pthread_barrier_wait
  559.  */
  560.   PTHREAD_BARRIER_SERIAL_THREAD = -1
  561. };
  562. /*
  563.  * ====================
  564.  * ====================
  565.  * Cancelation
  566.  * ====================
  567.  * ====================
  568.  */
  569. #define PTHREAD_CANCELED       ((void *) -1)
  570. /*
  571.  * ====================
  572.  * ====================
  573.  * Once Key
  574.  * ====================
  575.  * ====================
  576.  */
  577. #define PTHREAD_ONCE_INIT       { PTW32_FALSE, 0, 0, 0}
  578. struct pthread_once_t_
  579. {
  580.   int          done;        /* indicates if user function has been executed */
  581.   void *       lock;
  582.   int          reserved1;
  583.   int          reserved2;
  584. };
  585. /*
  586.  * ====================
  587.  * ====================
  588.  * Object initialisers
  589.  * ====================
  590.  * ====================
  591.  */
  592. #define PTHREAD_MUTEX_INITIALIZER ((pthread_mutex_t) -1)
  593. #define PTHREAD_RECURSIVE_MUTEX_INITIALIZER ((pthread_mutex_t) -2)
  594. #define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER ((pthread_mutex_t) -3)
  595. /*
  596.  * Compatibility with LinuxThreads
  597.  */
  598. #define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP PTHREAD_RECURSIVE_MUTEX_INITIALIZER
  599. #define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP PTHREAD_ERRORCHECK_MUTEX_INITIALIZER
  600. #define PTHREAD_COND_INITIALIZER ((pthread_cond_t) -1)
  601. #define PTHREAD_RWLOCK_INITIALIZER ((pthread_rwlock_t) -1)
  602. #define PTHREAD_SPINLOCK_INITIALIZER ((pthread_spinlock_t) -1)
  603. /*
  604.  * Mutex types.
  605.  */
  606. enum
  607. {
  608.   /* Compatibility with LinuxThreads */
  609.   PTHREAD_MUTEX_FAST_NP,
  610.   PTHREAD_MUTEX_RECURSIVE_NP,
  611.   PTHREAD_MUTEX_ERRORCHECK_NP,
  612.   PTHREAD_MUTEX_TIMED_NP = PTHREAD_MUTEX_FAST_NP,
  613.   PTHREAD_MUTEX_ADAPTIVE_NP = PTHREAD_MUTEX_FAST_NP,
  614.   /* For compatibility with POSIX */
  615.   PTHREAD_MUTEX_NORMAL = PTHREAD_MUTEX_FAST_NP,
  616.   PTHREAD_MUTEX_RECURSIVE = PTHREAD_MUTEX_RECURSIVE_NP,
  617.   PTHREAD_MUTEX_ERRORCHECK = PTHREAD_MUTEX_ERRORCHECK_NP,
  618.   PTHREAD_MUTEX_DEFAULT = PTHREAD_MUTEX_NORMAL
  619. };
  620. typedef struct ptw32_cleanup_t ptw32_cleanup_t;
  621. #if defined(_MSC_VER)
  622. /* Disable MSVC 'anachronism used' warning */
  623. #pragma warning( disable : 4229 )
  624. #endif
  625. typedef void (* PTW32_CDECL ptw32_cleanup_callback_t)(void *);
  626. #if defined(_MSC_VER)
  627. #pragma warning( default : 4229 )
  628. #endif
  629. struct ptw32_cleanup_t
  630. {
  631.   ptw32_cleanup_callback_t routine;
  632.   void *arg;
  633.   struct ptw32_cleanup_t *prev;
  634. };
  635. #ifdef __CLEANUP_SEH
  636.         /*
  637.          * WIN32 SEH version of cancel cleanup.
  638.          */
  639. #define pthread_cleanup_push( _rout, _arg ) 
  640.         { 
  641.             ptw32_cleanup_t     _cleanup; 
  642.             
  643.         _cleanup.routine        = (ptw32_cleanup_callback_t)(_rout); 
  644.             _cleanup.arg        = (_arg); 
  645.             __try 
  646.               { 
  647. #define pthread_cleanup_pop( _execute ) 
  648.               } 
  649.             __finally 
  650.                 { 
  651.                     if( _execute || AbnormalTermination()) 
  652.                       { 
  653.                           (*(_cleanup.routine))( _cleanup.arg ); 
  654.                       } 
  655.                 } 
  656.         }
  657. #else /* __CLEANUP_SEH */
  658. #ifdef __CLEANUP_C
  659.         /*
  660.          * C implementation of PThreads cancel cleanup
  661.          */
  662. #define pthread_cleanup_push( _rout, _arg ) 
  663.         { 
  664.             ptw32_cleanup_t     _cleanup; 
  665.             
  666.             ptw32_push_cleanup( &_cleanup, (ptw32_cleanup_callback_t) (_rout), (_arg) ); 
  667. #define pthread_cleanup_pop( _execute ) 
  668.             (void) ptw32_pop_cleanup( _execute ); 
  669.         }
  670. #else /* __CLEANUP_C */
  671. #ifdef __CLEANUP_CXX
  672.         /*
  673.          * C++ version of cancel cleanup.
  674.          * - John E. Bossom.
  675.          */
  676.         class PThreadCleanup {
  677.           /*
  678.            * PThreadCleanup
  679.            *
  680.            * Purpose
  681.            *      This class is a C++ helper class that is
  682.            *      used to implement pthread_cleanup_push/
  683.            *      pthread_cleanup_pop.
  684.            *      The destructor of this class automatically
  685.            *      pops the pushed cleanup routine regardless
  686.            *      of how the code exits the scope
  687.            *      (i.e. such as by an exception)
  688.            */
  689.       ptw32_cleanup_callback_t cleanUpRout;
  690.           void    *       obj;
  691.           int             executeIt;
  692.         public:
  693.           PThreadCleanup() :
  694.             cleanUpRout( 0 ),
  695.             obj( 0 ),
  696.             executeIt( 0 )
  697.             /*
  698.              * No cleanup performed
  699.              */
  700.             {
  701.             }
  702.           PThreadCleanup(
  703.              ptw32_cleanup_callback_t routine,
  704.                          void    *       arg ) :
  705.             cleanUpRout( routine ),
  706.             obj( arg ),
  707.             executeIt( 1 )
  708.             /*
  709.              * Registers a cleanup routine for 'arg'
  710.              */
  711.             {
  712.             }
  713.           ~PThreadCleanup()
  714.             {
  715.               if ( executeIt && ((void *) cleanUpRout != (void *) 0) )
  716.                 {
  717.                   (void) (*cleanUpRout)( obj );
  718.                 }
  719.             }
  720.           void execute( int exec )
  721.             {
  722.               executeIt = exec;
  723.             }
  724.         };
  725.         /*
  726.          * C++ implementation of PThreads cancel cleanup;
  727.          * This implementation takes advantage of a helper
  728.          * class who's destructor automatically calls the
  729.          * cleanup routine if we exit our scope weirdly
  730.          */
  731. #define pthread_cleanup_push( _rout, _arg ) 
  732.         { 
  733.             PThreadCleanup  cleanup((ptw32_cleanup_callback_t)(_rout), 
  734.                                     (void *) (_arg) );
  735. #define pthread_cleanup_pop( _execute ) 
  736.             cleanup.execute( _execute ); 
  737.         }
  738. #else
  739. #error ERROR [__FILE__, line __LINE__]: Cleanup type undefined.
  740. #endif /* __CLEANUP_CXX */
  741. #endif /* __CLEANUP_C */
  742. #endif /* __CLEANUP_SEH */
  743. /*
  744.  * ===============
  745.  * ===============
  746.  * Methods
  747.  * ===============
  748.  * ===============
  749.  */
  750. /*
  751.  * PThread Attribute Functions
  752.  */
  753. PTW32_DLLPORT int PTW32_CDECL pthread_attr_init (pthread_attr_t * attr);
  754. PTW32_DLLPORT int PTW32_CDECL pthread_attr_destroy (pthread_attr_t * attr);
  755. PTW32_DLLPORT int PTW32_CDECL pthread_attr_getdetachstate (const pthread_attr_t * attr,
  756.                                          int *detachstate);
  757. PTW32_DLLPORT int PTW32_CDECL pthread_attr_getstackaddr (const pthread_attr_t * attr,
  758.                                        void **stackaddr);
  759. PTW32_DLLPORT int PTW32_CDECL pthread_attr_getstacksize (const pthread_attr_t * attr,
  760.                                        size_t * stacksize);
  761. PTW32_DLLPORT int PTW32_CDECL pthread_attr_setdetachstate (pthread_attr_t * attr,
  762.                                          int detachstate);
  763. PTW32_DLLPORT int PTW32_CDECL pthread_attr_setstackaddr (pthread_attr_t * attr,
  764.                                        void *stackaddr);
  765. PTW32_DLLPORT int PTW32_CDECL pthread_attr_setstacksize (pthread_attr_t * attr,
  766.                                        size_t stacksize);
  767. PTW32_DLLPORT int PTW32_CDECL pthread_attr_getschedparam (const pthread_attr_t *attr,
  768.                                         struct sched_param *param);
  769. PTW32_DLLPORT int PTW32_CDECL pthread_attr_setschedparam (pthread_attr_t *attr,
  770.                                         const struct sched_param *param);
  771. PTW32_DLLPORT int PTW32_CDECL pthread_attr_setschedpolicy (pthread_attr_t *,
  772.                                          int);
  773. PTW32_DLLPORT int PTW32_CDECL pthread_attr_getschedpolicy (pthread_attr_t *,
  774.                                          int *);
  775. PTW32_DLLPORT int PTW32_CDECL pthread_attr_setinheritsched(pthread_attr_t * attr,
  776.                                          int inheritsched);
  777. PTW32_DLLPORT int PTW32_CDECL pthread_attr_getinheritsched(pthread_attr_t * attr,
  778.                                          int * inheritsched);
  779. PTW32_DLLPORT int PTW32_CDECL pthread_attr_setscope (pthread_attr_t *,
  780.                                    int);
  781. PTW32_DLLPORT int PTW32_CDECL pthread_attr_getscope (const pthread_attr_t *,
  782.                                    int *);
  783. /*
  784.  * PThread Functions
  785.  */
  786. PTW32_DLLPORT int PTW32_CDECL pthread_create (pthread_t * tid,
  787.                             const pthread_attr_t * attr,
  788.                             void *(*start) (void *),
  789.                             void *arg);
  790. PTW32_DLLPORT int PTW32_CDECL pthread_detach (pthread_t tid);
  791. PTW32_DLLPORT int PTW32_CDECL pthread_equal (pthread_t t1,
  792.                            pthread_t t2);
  793. PTW32_DLLPORT void PTW32_CDECL pthread_exit (void *value_ptr);
  794. PTW32_DLLPORT int PTW32_CDECL pthread_join (pthread_t thread,
  795.                           void **value_ptr);
  796. PTW32_DLLPORT pthread_t PTW32_CDECL pthread_self (void);
  797. PTW32_DLLPORT int PTW32_CDECL pthread_cancel (pthread_t thread);
  798. PTW32_DLLPORT int PTW32_CDECL pthread_setcancelstate (int state,
  799.                                     int *oldstate);
  800. PTW32_DLLPORT int PTW32_CDECL pthread_setcanceltype (int type,
  801.                                    int *oldtype);
  802. PTW32_DLLPORT void PTW32_CDECL pthread_testcancel (void);
  803. PTW32_DLLPORT int PTW32_CDECL pthread_once (pthread_once_t * once_control,
  804.                           void (*init_routine) (void));
  805. #if PTW32_LEVEL >= PTW32_LEVEL_MAX
  806. PTW32_DLLPORT ptw32_cleanup_t * PTW32_CDECL ptw32_pop_cleanup (int execute);
  807. PTW32_DLLPORT void PTW32_CDECL ptw32_push_cleanup (ptw32_cleanup_t * cleanup,
  808.                                  void (*routine) (void *),
  809.                                  void *arg);
  810. #endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
  811. /*
  812.  * Thread Specific Data Functions
  813.  */
  814. PTW32_DLLPORT int PTW32_CDECL pthread_key_create (pthread_key_t * key,
  815.                                 void (*destructor) (void *));
  816. PTW32_DLLPORT int PTW32_CDECL pthread_key_delete (pthread_key_t key);
  817. PTW32_DLLPORT int PTW32_CDECL pthread_setspecific (pthread_key_t key,
  818.                                  const void *value);
  819. PTW32_DLLPORT void * PTW32_CDECL pthread_getspecific (pthread_key_t key);
  820. /*
  821.  * Mutex Attribute Functions
  822.  */
  823. PTW32_DLLPORT int PTW32_CDECL pthread_mutexattr_init (pthread_mutexattr_t * attr);
  824. PTW32_DLLPORT int PTW32_CDECL pthread_mutexattr_destroy (pthread_mutexattr_t * attr);
  825. PTW32_DLLPORT int PTW32_CDECL pthread_mutexattr_getpshared (const pthread_mutexattr_t
  826.                                           * attr,
  827.                                           int *pshared);
  828. PTW32_DLLPORT int PTW32_CDECL pthread_mutexattr_setpshared (pthread_mutexattr_t * attr,
  829.                                           int pshared);
  830. PTW32_DLLPORT int PTW32_CDECL pthread_mutexattr_settype (pthread_mutexattr_t * attr, int kind);
  831. PTW32_DLLPORT int PTW32_CDECL pthread_mutexattr_gettype (pthread_mutexattr_t * attr, int *kind);
  832. /*
  833.  * Barrier Attribute Functions
  834.  */
  835. PTW32_DLLPORT int PTW32_CDECL pthread_barrierattr_init (pthread_barrierattr_t * attr);
  836. PTW32_DLLPORT int PTW32_CDECL pthread_barrierattr_destroy (pthread_barrierattr_t * attr);
  837. PTW32_DLLPORT int PTW32_CDECL pthread_barrierattr_getpshared (const pthread_barrierattr_t
  838.                                             * attr,
  839.                                             int *pshared);
  840. PTW32_DLLPORT int PTW32_CDECL pthread_barrierattr_setpshared (pthread_barrierattr_t * attr,
  841.                                             int pshared);
  842. /*
  843.  * Mutex Functions
  844.  */
  845. PTW32_DLLPORT int PTW32_CDECL pthread_mutex_init (pthread_mutex_t * mutex,
  846.                                 const pthread_mutexattr_t * attr);
  847. PTW32_DLLPORT int PTW32_CDECL pthread_mutex_destroy (pthread_mutex_t * mutex);
  848. PTW32_DLLPORT int PTW32_CDECL pthread_mutex_lock (pthread_mutex_t * mutex);
  849. PTW32_DLLPORT int PTW32_CDECL pthread_mutex_timedlock(pthread_mutex_t *mutex,
  850.                                     const struct timespec *abstime);
  851. PTW32_DLLPORT int PTW32_CDECL pthread_mutex_trylock (pthread_mutex_t * mutex);
  852. PTW32_DLLPORT int PTW32_CDECL pthread_mutex_unlock (pthread_mutex_t * mutex);
  853. /*
  854.  * Spinlock Functions
  855.  */
  856. PTW32_DLLPORT int PTW32_CDECL pthread_spin_init (pthread_spinlock_t * lock, int pshared);
  857. PTW32_DLLPORT int PTW32_CDECL pthread_spin_destroy (pthread_spinlock_t * lock);
  858. PTW32_DLLPORT int PTW32_CDECL pthread_spin_lock (pthread_spinlock_t * lock);
  859. PTW32_DLLPORT int PTW32_CDECL pthread_spin_trylock (pthread_spinlock_t * lock);
  860. PTW32_DLLPORT int PTW32_CDECL pthread_spin_unlock (pthread_spinlock_t * lock);
  861. /*
  862.  * Barrier Functions
  863.  */
  864. PTW32_DLLPORT int PTW32_CDECL pthread_barrier_init (pthread_barrier_t * barrier,
  865.                                   const pthread_barrierattr_t * attr,
  866.                                   unsigned int count);
  867. PTW32_DLLPORT int PTW32_CDECL pthread_barrier_destroy (pthread_barrier_t * barrier);
  868. PTW32_DLLPORT int PTW32_CDECL pthread_barrier_wait (pthread_barrier_t * barrier);
  869. /*
  870.  * Condition Variable Attribute Functions
  871.  */
  872. PTW32_DLLPORT int PTW32_CDECL pthread_condattr_init (pthread_condattr_t * attr);
  873. PTW32_DLLPORT int PTW32_CDECL pthread_condattr_destroy (pthread_condattr_t * attr);
  874. PTW32_DLLPORT int PTW32_CDECL pthread_condattr_getpshared (const pthread_condattr_t * attr,
  875.                                          int *pshared);
  876. PTW32_DLLPORT int PTW32_CDECL pthread_condattr_setpshared (pthread_condattr_t * attr,
  877.                                          int pshared);
  878. /*
  879.  * Condition Variable Functions
  880.  */
  881. PTW32_DLLPORT int PTW32_CDECL pthread_cond_init (pthread_cond_t * cond,
  882.                                const pthread_condattr_t * attr);
  883. PTW32_DLLPORT int PTW32_CDECL pthread_cond_destroy (pthread_cond_t * cond);
  884. PTW32_DLLPORT int PTW32_CDECL pthread_cond_wait (pthread_cond_t * cond,
  885.                                pthread_mutex_t * mutex);
  886. PTW32_DLLPORT int PTW32_CDECL pthread_cond_timedwait (pthread_cond_t * cond,
  887.                                     pthread_mutex_t * mutex,
  888.                                     const struct timespec *abstime);
  889. PTW32_DLLPORT int PTW32_CDECL pthread_cond_signal (pthread_cond_t * cond);
  890. PTW32_DLLPORT int PTW32_CDECL pthread_cond_broadcast (pthread_cond_t * cond);
  891. /*
  892.  * Scheduling
  893.  */
  894. PTW32_DLLPORT int PTW32_CDECL pthread_setschedparam (pthread_t thread,
  895.                                    int policy,
  896.                                    const struct sched_param *param);
  897. PTW32_DLLPORT int PTW32_CDECL pthread_getschedparam (pthread_t thread,
  898.                                    int *policy,
  899.                                    struct sched_param *param);
  900. PTW32_DLLPORT int PTW32_CDECL pthread_setconcurrency (int);
  901.  
  902. PTW32_DLLPORT int PTW32_CDECL pthread_getconcurrency (void);
  903. /*
  904.  * Read-Write Lock Functions
  905.  */
  906. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_init(pthread_rwlock_t *lock,
  907.                                 const pthread_rwlockattr_t *attr);
  908. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_destroy(pthread_rwlock_t *lock);
  909. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_tryrdlock(pthread_rwlock_t *);
  910. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_trywrlock(pthread_rwlock_t *);
  911. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_rdlock(pthread_rwlock_t *lock);
  912. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_timedrdlock(pthread_rwlock_t *lock,
  913.                                        const struct timespec *abstime);
  914. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_wrlock(pthread_rwlock_t *lock);
  915. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_timedwrlock(pthread_rwlock_t *lock,
  916.                                        const struct timespec *abstime);
  917. PTW32_DLLPORT int PTW32_CDECL pthread_rwlock_unlock(pthread_rwlock_t *lock);
  918. PTW32_DLLPORT int PTW32_CDECL pthread_rwlockattr_init (pthread_rwlockattr_t * attr);
  919. PTW32_DLLPORT int PTW32_CDECL pthread_rwlockattr_destroy (pthread_rwlockattr_t * attr);
  920. PTW32_DLLPORT int PTW32_CDECL pthread_rwlockattr_getpshared (const pthread_rwlockattr_t * attr,
  921.                                            int *pshared);
  922. PTW32_DLLPORT int PTW32_CDECL pthread_rwlockattr_setpshared (pthread_rwlockattr_t * attr,
  923.                                            int pshared);
  924. #if PTW32_LEVEL >= PTW32_LEVEL_MAX - 1
  925. /*
  926.  * Signal Functions. Should be defined in <signal.h> but MSVC and MinGW32
  927.  * already have signal.h that don't define these.
  928.  */
  929. PTW32_DLLPORT int PTW32_CDECL pthread_kill(pthread_t thread, int sig);
  930. /*
  931.  * Non-portable functions
  932.  */
  933. /*
  934.  * Compatibility with Linux.
  935.  */
  936. PTW32_DLLPORT int PTW32_CDECL pthread_mutexattr_setkind_np(pthread_mutexattr_t * attr,
  937.                                          int kind);
  938. PTW32_DLLPORT int PTW32_CDECL pthread_mutexattr_getkind_np(pthread_mutexattr_t * attr,
  939.                                          int *kind);
  940. /*
  941.  * Possibly supported by other POSIX threads implementations
  942.  */
  943. PTW32_DLLPORT int PTW32_CDECL pthread_delay_np (struct timespec * interval);
  944. PTW32_DLLPORT int PTW32_CDECL pthread_num_processors_np(void);
  945. /*
  946.  * Useful if an application wants to statically link
  947.  * the lib rather than load the DLL at run-time.
  948.  */
  949. PTW32_DLLPORT int PTW32_CDECL pthread_win32_process_attach_np(void);
  950. PTW32_DLLPORT int PTW32_CDECL pthread_win32_process_detach_np(void);
  951. PTW32_DLLPORT int PTW32_CDECL pthread_win32_thread_attach_np(void);
  952. PTW32_DLLPORT int PTW32_CDECL pthread_win32_thread_detach_np(void);
  953. /*
  954.  * Features that are auto-detected at load/run time.
  955.  */
  956. PTW32_DLLPORT int PTW32_CDECL pthread_win32_test_features_np(int);
  957. enum ptw32_features {
  958.   PTW32_SYSTEM_INTERLOCKED_COMPARE_EXCHANGE = 0x0001, /* System provides it. */
  959.   PTW32_ALERTABLE_ASYNC_CANCEL              = 0x0002  /* Can cancel blocked threads. */
  960. };
  961. /*
  962.  * Register a system time change with the library.
  963.  * Causes the library to perform various functions
  964.  * in response to the change. Should be called whenever
  965.  * the application's top level window receives a
  966.  * WM_TIMECHANGE message. It can be passed directly to
  967.  * pthread_create() as a new thread if desired.
  968.  */
  969. PTW32_DLLPORT void * PTW32_CDECL pthread_timechange_handler_np(void *);
  970. #endif /*PTW32_LEVEL >= PTW32_LEVEL_MAX - 1 */
  971. #if PTW32_LEVEL >= PTW32_LEVEL_MAX
  972. /*
  973.  * Returns the Win32 HANDLE for the POSIX thread.
  974.  */
  975. PTW32_DLLPORT HANDLE PTW32_CDECL pthread_getw32threadhandle_np(pthread_t thread);
  976. /*
  977.  * Protected Methods
  978.  *
  979.  * This function blocks until the given WIN32 handle
  980.  * is signaled or pthread_cancel had been called.
  981.  * This function allows the caller to hook into the
  982.  * PThreads cancel mechanism. It is implemented using
  983.  *
  984.  *              WaitForMultipleObjects
  985.  *
  986.  * on 'waitHandle' and a manually reset WIN32 Event
  987.  * used to implement pthread_cancel. The 'timeout'
  988.  * argument to TimedWait is simply passed to
  989.  * WaitForMultipleObjects.
  990.  */
  991. PTW32_DLLPORT int PTW32_CDECL pthreadCancelableWait (HANDLE waitHandle);
  992. PTW32_DLLPORT int PTW32_CDECL pthreadCancelableTimedWait (HANDLE waitHandle,
  993.                                         DWORD timeout);
  994. #endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
  995. /*
  996.  * Thread-Safe C Runtime Library Mappings.
  997.  */
  998. #ifndef _UWIN
  999. #  if defined(NEED_ERRNO)
  1000.      PTW32_DLLPORT int * PTW32_CDECL _errno( void );
  1001. #  else
  1002. #    ifndef errno
  1003. #      if (defined(_MT) || defined(_DLL))
  1004.          __declspec(dllimport) extern int * __cdecl _errno(void);
  1005. #        define errno   (*_errno())
  1006. #      endif
  1007. #    endif
  1008. #  endif
  1009. #endif
  1010. /*
  1011.  * WIN32 C runtime library had been made thread-safe
  1012.  * without affecting the user interface. Provide
  1013.  * mappings from the UNIX thread-safe versions to
  1014.  * the standard C runtime library calls.
  1015.  * Only provide function mappings for functions that
  1016.  * actually exist on WIN32.
  1017.  */
  1018. #if !defined(__MINGW32__)
  1019. #define strtok_r( _s, _sep, _lasts ) 
  1020.         ( *(_lasts) = strtok( (_s), (_sep) ) )
  1021. #endif /* !__MINGW32__ */
  1022. #define asctime_r( _tm, _buf ) 
  1023.         ( strcpy( (_buf), asctime( (_tm) ) ), 
  1024.           (_buf) )
  1025. #define ctime_r( _clock, _buf ) 
  1026.         ( strcpy( (_buf), ctime( (_clock) ) ),  
  1027.           (_buf) )
  1028. #define gmtime_r( _clock, _result ) 
  1029.         ( *(_result) = *gmtime( (_clock) ), 
  1030.           (_result) )
  1031. #define localtime_r( _clock, _result ) 
  1032.         ( *(_result) = *localtime( (_clock) ), 
  1033.           (_result) )
  1034. #define rand_r( _seed ) 
  1035.         ( _seed == _seed? rand() : rand() )
  1036. /*
  1037.  * Some compiler environments don't define some things.
  1038.  */
  1039. #if defined(__BORLANDC__)
  1040. #  define _ftime ftime
  1041. #  define _timeb timeb
  1042. #endif
  1043. #ifdef __cplusplus
  1044. /*
  1045.  * Internal exceptions
  1046.  */
  1047. class ptw32_exception {};
  1048. class ptw32_exception_cancel : public ptw32_exception {};
  1049. class ptw32_exception_exit   : public ptw32_exception {};
  1050. #endif
  1051. #if PTW32_LEVEL >= PTW32_LEVEL_MAX
  1052. /* FIXME: This is only required if the library was built using SEH */
  1053. /*
  1054.  * Get internal SEH tag
  1055.  */
  1056. PTW32_DLLPORT DWORD PTW32_CDECL ptw32_get_exception_services_code(void);
  1057. #endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
  1058. #ifndef PTW32_BUILD
  1059. #ifdef __CLEANUP_SEH
  1060. /*
  1061.  * Redefine the SEH __except keyword to ensure that applications
  1062.  * propagate our internal exceptions up to the library's internal handlers.
  1063.  */
  1064. #define __except( E ) 
  1065.         __except( ( GetExceptionCode() == ptw32_get_exception_services_code() ) 
  1066.                  ? EXCEPTION_CONTINUE_SEARCH : ( E ) )
  1067. #endif /* __CLEANUP_SEH */
  1068. #ifdef __CLEANUP_CXX
  1069. /*
  1070.  * Redefine the C++ catch keyword to ensure that applications
  1071.  * propagate our internal exceptions up to the library's internal handlers.
  1072.  */
  1073. #ifdef _MSC_VER
  1074.         /*
  1075.          * WARNING: Replace any 'catch( ... )' with 'PtW32CatchAll'
  1076.          * if you want Pthread-Win32 cancelation and pthread_exit to work.
  1077.          */
  1078. #ifndef PtW32NoCatchWarn
  1079. #pragma message("Specify "/DPtW32NoCatchWarn" compiler flag to skip this message.")
  1080. #pragma message("------------------------------------------------------------------")
  1081. #pragma message("When compiling applications with MSVC++ and C++ exception handling:")
  1082. #pragma message("  Replace any 'catch( ... )' in routines called from POSIX threads")
  1083. #pragma message("  with 'PtW32CatchAll' or 'CATCHALL' if you want POSIX thread")
  1084. #pragma message("  cancelation and pthread_exit to work. For example:")
  1085. #pragma message("")
  1086. #pragma message("    #ifdef PtW32CatchAll")
  1087. #pragma message("      PtW32CatchAll")
  1088. #pragma message("    #else")
  1089. #pragma message("      catch(...)")
  1090. #pragma message("    #endif")
  1091. #pragma message("        {")
  1092. #pragma message("          /* Catchall block processing */")
  1093. #pragma message("        }")
  1094. #pragma message("------------------------------------------------------------------")
  1095. #endif
  1096. #define PtW32CatchAll 
  1097.         catch( ptw32_exception & ) { throw; } 
  1098.         catch( ... )
  1099. #else /* _MSC_VER */
  1100. #define catch( E ) 
  1101.         catch( ptw32_exception & ) { throw; } 
  1102.         catch( E )
  1103. #endif /* _MSC_VER */
  1104. #endif /* __CLEANUP_CXX */
  1105. #endif /* ! PTW32_BUILD */
  1106. #ifdef __cplusplus
  1107. }                               /* End of extern "C" */
  1108. #endif                          /* __cplusplus */
  1109. #ifdef PTW32__HANDLE_DEF
  1110. # undef HANDLE
  1111. #endif
  1112. #ifdef PTW32__DWORD_DEF
  1113. # undef DWORD
  1114. #endif
  1115. #undef PTW32_LEVEL
  1116. #undef PTW32_LEVEL_MAX
  1117. #endif /* ! RC_INVOKED */
  1118. #endif /* PTHREAD_H */