gthr.h 5.9 KB
Newer Older
1
/* Threads compatibility routines for libgcc2.  */
2
/* Compile this one with gcc.  */
3
/* Copyright (C) 1997, 1998, 2004, 2008, 2009 Free Software Foundation, Inc.
4

5
This file is part of GCC.
6

7 8
GCC 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
9
Software Foundation; either version 3, or (at your option) any later
10
version.
11

12 13 14 15
GCC 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.
16

17 18 19 20 21 22 23 24
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.  */
25

26 27
#ifndef GCC_GTHR_H
#define GCC_GTHR_H
28

29
#ifndef HIDE_EXPORTS
30
#pragma GCC visibility push(default)
31
#endif
32

33 34 35
/* If this file is compiled with threads support, it must
       #define __GTHREADS 1
   to indicate that threads support is present.  Also it has define
36
   function
37 38 39 40 41 42 43
     int __gthread_active_p ()
   that returns 1 if thread system is active, 0 if not.

   The threads interface must define the following types:
     __gthread_key_t
     __gthread_once_t
     __gthread_mutex_t
44
     __gthread_recursive_mutex_t
45 46 47 48 49 50 51 52

   The threads interface must define the following macros:

     __GTHREAD_ONCE_INIT
     		to initialize __gthread_once_t
     __GTHREAD_MUTEX_INIT
     		to initialize __gthread_mutex_t to get a fast
		non-recursive mutex.
53
     __GTHREAD_MUTEX_INIT_FUNCTION
54
     		some systems can't initialize a mutex without a
55 56 57 58
		function call.  On such systems, define this to a
		function which looks like this:
		  void __GTHREAD_MUTEX_INIT_FUNCTION (__gthread_mutex_t *)
		Don't define __GTHREAD_MUTEX_INIT in this case
59 60 61
     __GTHREAD_RECURSIVE_MUTEX_INIT
     __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION
     		as above, but for a recursive mutex.
62 63 64 65 66 67 68 69 70 71 72

   The threads interface must define the following static functions:

     int __gthread_once (__gthread_once_t *once, void (*func) ())

     int __gthread_key_create (__gthread_key_t *keyp, void (*dtor) (void *))
     int __gthread_key_delete (__gthread_key_t key)

     void *__gthread_getspecific (__gthread_key_t key)
     int __gthread_setspecific (__gthread_key_t key, const void *ptr)

73 74
     int __gthread_mutex_destroy (__gthread_mutex_t *mutex);

75 76 77 78
     int __gthread_mutex_lock (__gthread_mutex_t *mutex);
     int __gthread_mutex_trylock (__gthread_mutex_t *mutex);
     int __gthread_mutex_unlock (__gthread_mutex_t *mutex);

79 80 81
     int __gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *mutex);
     int __gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *mutex);
     int __gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex);
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

   The following are supported in POSIX threads only. They are required to
   fix a deadlock in static initialization inside libsupc++. The header file
   gthr-posix.h defines a symbol __GTHREAD_HAS_COND to signify that these extra
   features are supported.

   Types:
     __gthread_cond_t

   Macros:
     __GTHREAD_COND_INIT
     __GTHREAD_COND_INIT_FUNCTION

   Interface:
     int __gthread_cond_broadcast (__gthread_cond_t *cond);
     int __gthread_cond_wait (__gthread_cond_t *cond, __gthread_mutex_t *mutex);
     int __gthread_cond_wait_recursive (__gthread_cond_t *cond,
					__gthread_recursive_mutex_t *mutex);
100

101 102
   All functions returning int should return zero on success or the error
   number.  If the operation is not supported, -1 is returned.
103

H.J. Lu committed
104
   If the following are also defined, you should
105
     #define __GTHREADS_CXX0X 1
H.J. Lu committed
106 107
   to enable the c++0x thread library.

108 109 110 111 112
   Types:
     __gthread_t
     __gthread_time_t

   Interface:
H.J. Lu committed
113
     int __gthread_create (__gthread_t *thread, void *(*func) (void*),
114 115 116 117 118 119 120 121 122 123 124
                           void *args);
     int __gthread_join (__gthread_t thread, void **value_ptr);
     int __gthread_detach (__gthread_t thread);
     int __gthread_equal (__gthread_t t1, __gthread_t t2);
     __gthread_t __gthread_self (void);
     int __gthread_yield (void);

     int __gthread_mutex_timedlock (__gthread_mutex_t *m,
                                    const __gthread_time_t *abs_timeout);
     int __gthread_recursive_mutex_timedlock (__gthread_recursive_mutex_t *m,
                                          const __gthread_time_t *abs_time);
H.J. Lu committed
125

126
     int __gthread_cond_signal (__gthread_cond_t *cond);
H.J. Lu committed
127
     int __gthread_cond_timedwait (__gthread_cond_t *cond,
128 129 130 131 132 133
                                   __gthread_mutex_t *mutex,
                                   const __gthread_time_t *abs_timeout);
     int __gthread_cond_timedwait_recursive (__gthread_cond_t *cond,
                                             __gthread_recursive_mutex_t *mutex,
                                             const __gthread_time_t *abs_time)

134
   Currently supported threads packages are
135 136 137
     TPF threads with -D__tpf__
     POSIX/Unix98 threads with -D_PTHREADS
     POSIX/Unix95 threads with -D_PTHREADS95
138 139
     DCE threads with -D_DCE_THREADS
     Solaris/UI threads with -D_SOLARIS_THREADS
H.J. Lu committed
140

141 142
*/

143
/* Check first for thread specific defines.  */
P.J. Darcy committed
144 145 146
#if defined (__tpf__)
#include "gthr-tpf.h"
#elif _PTHREADS
147
#include "gthr-posix.h"
148 149
#elif _PTHREADS95
#include "gthr-posix95.h"
150 151 152 153 154
#elif _DCE_THREADS
#include "gthr-dce.h"
#elif _SOLARIS_THREADS
#include "gthr-solaris.h"

155
/* Include GTHREAD_FILE if one is defined.  */
156 157
#elif defined(HAVE_GTHR_DEFAULT)
#if SUPPORTS_WEAK
158 159 160
#ifndef GTHREAD_USE_WEAK
#define GTHREAD_USE_WEAK 1
#endif
161
#endif
162 163
#include "gthr-default.h"

164
/* Fallback to single thread definitions.  */
165 166 167 168
#else
#include "gthr-single.h"
#endif

169
#ifndef HIDE_EXPORTS
170
#pragma GCC visibility pop
171
#endif
172

173
#endif /* ! GCC_GTHR_H */