gthr.h 5.39 KB
Newer Older
1
/* Threads compatibility routines for libgcc2.  */
2
/* Compile this one with gcc.  */
3
/* Copyright (C) 1997-2018 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 55 56
		to initialize __gthread_mutex_t to get a fast
		non-recursive mutex.
		Define this to a function which looks like this:
57
		  void __GTHREAD_MUTEX_INIT_FUNCTION (__gthread_mutex_t *)
58 59
     		Some systems can't initialize a mutex without a
		function call.  Don't define __GTHREAD_MUTEX_INIT in this case.
60 61 62
     __GTHREAD_RECURSIVE_MUTEX_INIT
     __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION
     		as above, but for a recursive mutex.
63 64 65 66 67 68 69 70 71 72 73

   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)

74
     int __gthread_mutex_destroy (__gthread_mutex_t *mutex);
75
     int __gthread_recursive_mutex_destroy (__gthread_recursive_mutex_t *mutex);
76

77 78 79 80
     int __gthread_mutex_lock (__gthread_mutex_t *mutex);
     int __gthread_mutex_trylock (__gthread_mutex_t *mutex);
     int __gthread_mutex_unlock (__gthread_mutex_t *mutex);

81 82 83
     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);
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

   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);
102

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

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

110 111 112 113 114
   Types:
     __gthread_t
     __gthread_time_t

   Interface:
H.J. Lu committed
115
     int __gthread_create (__gthread_t *thread, void *(*func) (void*),
116 117 118 119 120 121 122 123 124 125 126
                           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
127

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

133 134
*/

135
#if SUPPORTS_WEAK
136 137 138 139 140 141 142 143
/* The pe-coff weak support isn't fully compatible to ELF's weak.
   For static libraries it might would work, but as we need to deal
   with shared versions too, we disable it for mingw-targets.  */
#ifdef __MINGW32__
#undef GTHREAD_USE_WEAK
#define GTHREAD_USE_WEAK 0
#endif

144 145 146
#ifndef GTHREAD_USE_WEAK
#define GTHREAD_USE_WEAK 1
#endif
147
#endif
148 149
#include "gthr-default.h"

150
#ifndef HIDE_EXPORTS
151
#pragma GCC visibility pop
152
#endif
153

154
#endif /* ! GCC_GTHR_H */