diff options
Diffstat (limited to 'gcc/gthr-single.h')
-rw-r--r-- | gcc/gthr-single.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gthr-single.h b/gcc/gthr-single.h index e267ba640ad..357528ad1f1 100644 --- a/gcc/gthr-single.h +++ b/gcc/gthr-single.h @@ -213,12 +213,12 @@ __gthread_active_p (void) return 0; } -static inline int +static inline int __gthread_once (__gthread_once_t *__once UNUSED, void (*__func) (void) UNUSED) { return 0; } - + static inline int UNUSED __gthread_key_create (__gthread_key_t *__key UNUSED, void (*__func) (void *) UNUSED) { @@ -230,14 +230,14 @@ __gthread_key_delete (__gthread_key_t __key UNUSED) { return 0; } - + static inline void * __gthread_getspecific (__gthread_key_t __key UNUSED) { return 0; } -static inline int +static inline int __gthread_setspecific (__gthread_key_t __key UNUSED, const void *__v UNUSED) { return 0; |