summaryrefslogtreecommitdiff
path: root/gcc/gthr-posix.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gthr-posix.c')
-rw-r--r--gcc/gthr-posix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gthr-posix.c b/gcc/gthr-posix.c
index 429c3f463a6..1987ba738c2 100644
--- a/gcc/gthr-posix.c
+++ b/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;