OLD | NEW |
1 /* Threads compatibility routines for libgcc2. */ | 1 /* Threads compatibility routines for libgcc2. */ |
2 /* Compile this one with gcc. */ | 2 /* Compile this one with gcc. */ |
3 /* Copyright (C) 1997, 1998, 2004, 2008, 2009 Free Software Foundation, Inc. | 3 /* Copyright (C) 1997, 1998, 2004, 2008, 2009 Free Software Foundation, Inc. |
4 | 4 |
5 This file is part of GCC. | 5 This file is part of GCC. |
6 | 6 |
7 GCC is free software; you can redistribute it and/or modify it under | 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 | 8 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 | 9 Software Foundation; either version 3, or (at your option) any later |
10 version. | 10 version. |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 __gthread_recursive_mutex_t | 44 __gthread_recursive_mutex_t |
45 | 45 |
46 The threads interface must define the following macros: | 46 The threads interface must define the following macros: |
47 | 47 |
48 __GTHREAD_ONCE_INIT | 48 __GTHREAD_ONCE_INIT |
49 to initialize __gthread_once_t | 49 to initialize __gthread_once_t |
50 __GTHREAD_MUTEX_INIT | 50 __GTHREAD_MUTEX_INIT |
51 to initialize __gthread_mutex_t to get a fast | 51 to initialize __gthread_mutex_t to get a fast |
52 non-recursive mutex. | 52 non-recursive mutex. |
53 __GTHREAD_MUTEX_INIT_FUNCTION | 53 __GTHREAD_MUTEX_INIT_FUNCTION |
54 » » some systems can't initialize a mutex without a | 54 » » to initialize __gthread_mutex_t to get a fast |
55 » » function call. On such systems, define this to a | 55 » » non-recursive mutex. |
56 » » function which looks like this: | 56 » » Define this to a function which looks like this: |
57 void __GTHREAD_MUTEX_INIT_FUNCTION (__gthread_mutex_t *) | 57 void __GTHREAD_MUTEX_INIT_FUNCTION (__gthread_mutex_t *) |
58 » » Don't define __GTHREAD_MUTEX_INIT in this case | 58 » » Some systems can't initialize a mutex without a |
| 59 » » function call. Don't define __GTHREAD_MUTEX_INIT in this case. |
59 __GTHREAD_RECURSIVE_MUTEX_INIT | 60 __GTHREAD_RECURSIVE_MUTEX_INIT |
60 __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION | 61 __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION |
61 as above, but for a recursive mutex. | 62 as above, but for a recursive mutex. |
62 | 63 |
63 The threads interface must define the following static functions: | 64 The threads interface must define the following static functions: |
64 | 65 |
65 int __gthread_once (__gthread_once_t *once, void (*func) ()) | 66 int __gthread_once (__gthread_once_t *once, void (*func) ()) |
66 | 67 |
67 int __gthread_key_create (__gthread_key_t *keyp, void (*dtor) (void *)) | 68 int __gthread_key_create (__gthread_key_t *keyp, void (*dtor) (void *)) |
68 int __gthread_key_delete (__gthread_key_t key) | 69 int __gthread_key_delete (__gthread_key_t key) |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 /* Fallback to single thread definitions. */ | 173 /* Fallback to single thread definitions. */ |
173 #else | 174 #else |
174 #include "gthr-single.h" | 175 #include "gthr-single.h" |
175 #endif | 176 #endif |
176 | 177 |
177 #ifndef HIDE_EXPORTS | 178 #ifndef HIDE_EXPORTS |
178 #pragma GCC visibility pop | 179 #pragma GCC visibility pop |
179 #endif | 180 #endif |
180 | 181 |
181 #endif /* ! GCC_GTHR_H */ | 182 #endif /* ! GCC_GTHR_H */ |
OLD | NEW |