pthreadx.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* Copyright (C) 2001 by First Peer, Inc. All rights reserved.
  2. **
  3. ** Redistribution and use in source and binary forms, with or without
  4. ** modification, are permitted provided that the following conditions
  5. ** are met:
  6. ** 1. Redistributions of source code must retain the above copyright
  7. ** notice, this list of conditions and the following disclaimer.
  8. ** 2. Redistributions in binary form must reproduce the above copyright
  9. ** notice, this list of conditions and the following disclaimer in the
  10. ** documentation and/or other materials provided with the distribution.
  11. ** 3. The name of the author may not be used to endorse or promote products
  12. ** derived from this software without specific prior written permission.
  13. **
  14. ** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. ** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. ** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. ** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. ** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. ** SUCH DAMAGE. */
  25. #ifndef PTHREADX_H_INCLUDED
  26. #define PTHREADX_H_INCLUDED
  27. #include "xmlrpc_config.h"
  28. #if HAVE_PTHREAD
  29. # define _REENTRANT
  30. # include <pthread.h>
  31. #elif HAVE_WINDOWS_THREAD
  32. #include <windows.h>
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. typedef HANDLE pthread_t;
  37. typedef CRITICAL_SECTION pthread_mutex_t;
  38. #define PTHREAD_MUTEX_INITIALIZER NULL
  39. /* usage: pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; */
  40. typedef
  41. struct {
  42. int attrs; /* currently unused. placeholder. */
  43. } pthread_attr_t;
  44. typedef
  45. struct {
  46. int attrs; /* currently unused. placeholder. */
  47. } pthread_mutexattr_t;
  48. typedef void * pthread_func(void *);
  49. extern int pthread_create(pthread_t * const new_thread_ID,
  50. const pthread_attr_t * const attr,
  51. pthread_func * start_func,
  52. void * const arg);
  53. extern int pthread_cancel(pthread_t target_thread);
  54. extern int pthread_join(pthread_t target_thread, void **status);
  55. extern int pthread_detach(pthread_t target_thread);
  56. extern int pthread_mutex_init(pthread_mutex_t * const mp,
  57. const pthread_mutexattr_t * const attr);
  58. extern int pthread_mutex_lock(pthread_mutex_t * const mp);
  59. extern int pthread_mutex_unlock(pthread_mutex_t * const mp);
  60. extern int pthread_mutex_destroy(pthread_mutex_t * const mp);
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64. #else /* HAVE_WINDOWS_THREAD */
  65. #error "You don't have any thread facility. (According to "
  66. #error "HAVE_PTHREAD and HAVE_WINDOWS_THREAD macros defined in "
  67. #error "xmlrpc_config.h)"
  68. #endif
  69. #endif