Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Unified Diff: gcc/gcc/gthr.h

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/graphite.h ('k') | gcc/gcc/gthr-posix.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/gthr.h
diff --git a/gcc/gcc/gthr.h b/gcc/gcc/gthr.h
index cd3cc23c615aa151b4ab496d5ffb010d9119af4c..6edfbcd69c38c99689b7e287d86045ddb0e8600e 100644
--- a/gcc/gcc/gthr.h
+++ b/gcc/gcc/gthr.h
@@ -101,16 +101,16 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
All functions returning int should return zero on success or the error
number. If the operation is not supported, -1 is returned.
- If the following are also defined, you should
+ If the following are also defined, you should
#define __GTHREADS_CXX0X 1
- to enable the c++0x thread library.
-
+ to enable the c++0x thread library.
+
Types:
__gthread_t
__gthread_time_t
Interface:
- int __gthread_create (__gthread_t *thread, void *(*func) (void*),
+ int __gthread_create (__gthread_t *thread, void *(*func) (void*),
void *args);
int __gthread_join (__gthread_t thread, void **value_ptr);
int __gthread_detach (__gthread_t thread);
@@ -122,9 +122,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
const __gthread_time_t *abs_timeout);
int __gthread_recursive_mutex_timedlock (__gthread_recursive_mutex_t *m,
const __gthread_time_t *abs_time);
-
+
int __gthread_cond_signal (__gthread_cond_t *cond);
- int __gthread_cond_timedwait (__gthread_cond_t *cond,
+ int __gthread_cond_timedwait (__gthread_cond_t *cond,
__gthread_mutex_t *mutex,
const __gthread_time_t *abs_timeout);
int __gthread_cond_timedwait_recursive (__gthread_cond_t *cond,
@@ -137,7 +137,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
POSIX/Unix95 threads with -D_PTHREADS95
DCE threads with -D_DCE_THREADS
Solaris/UI threads with -D_SOLARIS_THREADS
-
+
*/
/* Check first for thread specific defines. */
« no previous file with comments | « gcc/gcc/graphite.h ('k') | gcc/gcc/gthr-posix.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698