Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(16)

Side by Side Diff: gcc/gthr.h

Issue 6139063: Backported r185231 from trunk. (Closed) Base URL: svn+ssh://gcc.gnu.org/svn/gcc/branches/google/gcc-4_6/
Patch Set: Created 12 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gcc/ChangeLog.google-4_6 ('k') | gcc/gthr-posix.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 */
OLDNEW
« no previous file with comments | « gcc/ChangeLog.google-4_6 ('k') | gcc/gthr-posix.h » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b