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

Unified Diff: gcc/gcc/gthr-posix.c

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/gthr.h ('k') | gcc/gcc/gthr-tpf.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/gthr-posix.c
diff --git a/gcc/gcc/gthr-posix.c b/gcc/gcc/gthr-posix.c
index 429c3f463a6a68bb2ec873256191b41da6fa3faf..1987ba738c2c242fc913626b881a246a26afdf6b 100644
--- a/gcc/gcc/gthr-posix.c
+++ b/gcc/gcc/gthr-posix.c
@@ -72,8 +72,8 @@ pthread_create (pthread_t *thread ATTRIBUTE_UNUSED,
return 0;
}
-int
-pthread_join (pthread_t thread ATTRIBUTE_UNUSED,
+int
+pthread_join (pthread_t thread ATTRIBUTE_UNUSED,
void **value_ptr ATTRIBUTE_UNUSED)
{
return 0;
@@ -84,7 +84,7 @@ pthread_exit (void *value_ptr ATTRIBUTE_UNUSED)
{
}
-int
+int
pthread_detach (pthread_t thread ATTRIBUTE_UNUSED)
{
return 0;
@@ -178,7 +178,7 @@ pthread_cond_wait (pthread_cond_t *cond ATTRIBUTE_UNUSED,
int
pthread_cond_timedwait (pthread_cond_t *cond ATTRIBUTE_UNUSED,
- pthread_mutex_t *mutex ATTRIBUTE_UNUSED,
+ pthread_mutex_t *mutex ATTRIBUTE_UNUSED,
const struct timespec *abstime ATTRIBUTE_UNUSED)
{
return 0;
« no previous file with comments | « gcc/gcc/gthr.h ('k') | gcc/gcc/gthr-tpf.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698