1 /* Threads compatibility routines for libgcc2. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1997, 1998, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 /* As a special exception, if you link this library with other files,
23 some of which are compiled with GCC, to produce an executable,
24 this library does not by itself cause the resulting executable
25 to be covered by the GNU General Public License.
26 This exception does not however invalidate any other reasons why
27 the executable file might be covered by the GNU General Public License. */
33 #pragma GCC visibility push(default)
36 /* If this file is compiled with threads support, it must
38 to indicate that threads support is present. Also it has define
40 int __gthread_active_p ()
41 that returns 1 if thread system is active, 0 if not.
43 The threads interface must define the following types:
47 __gthread_recursive_mutex_t
49 The threads interface must define the following macros:
52 to initialize __gthread_once_t
54 to initialize __gthread_mutex_t to get a fast
56 __GTHREAD_MUTEX_INIT_FUNCTION
57 some systems can't initialize a mutex without a
58 function call. On such systems, define this to a
59 function which looks like this:
60 void __GTHREAD_MUTEX_INIT_FUNCTION (__gthread_mutex_t *)
61 Don't define __GTHREAD_MUTEX_INIT in this case
62 __GTHREAD_RECURSIVE_MUTEX_INIT
63 __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION
64 as above, but for a recursive mutex.
66 The threads interface must define the following static functions:
68 int __gthread_once (__gthread_once_t *once, void (*func) ())
70 int __gthread_key_create (__gthread_key_t *keyp, void (*dtor) (void *))
71 int __gthread_key_delete (__gthread_key_t key)
73 void *__gthread_getspecific (__gthread_key_t key)
74 int __gthread_setspecific (__gthread_key_t key, const void *ptr)
76 int __gthread_mutex_lock (__gthread_mutex_t *mutex);
77 int __gthread_mutex_trylock (__gthread_mutex_t *mutex);
78 int __gthread_mutex_unlock (__gthread_mutex_t *mutex);
80 int __gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *mutex);
81 int __gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *mutex);
82 int __gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex);
84 All functions returning int should return zero on success or the error
85 number. If the operation is not supported, -1 is returned.
87 Currently supported threads packages are
88 TPF threads with -D__tpf__
89 POSIX/Unix98 threads with -D_PTHREADS
90 POSIX/Unix95 threads with -D_PTHREADS95
91 DCE threads with -D_DCE_THREADS
92 Solaris/UI threads with -D_SOLARIS_THREADS
95 /* Check first for thread specific defines. */
99 #include "gthr-posix.h"
101 #include "gthr-posix95.h"
103 #include "gthr-dce.h"
104 #elif _SOLARIS_THREADS
105 #include "gthr-solaris.h"
107 /* Include GTHREAD_FILE if one is defined. */
108 #elif defined(HAVE_GTHR_DEFAULT)
110 #ifndef GTHREAD_USE_WEAK
111 #define GTHREAD_USE_WEAK 1
114 #include "gthr-default.h"
116 /* Fallback to single thread definitions. */
118 #include "gthr-single.h"
122 #pragma GCC visibility pop
125 #endif /* ! GCC_GTHR_H */