diff options
Diffstat (limited to 'gcc/gthr-vxworks.h')
-rw-r--r-- | gcc/gthr-vxworks.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/gthr-vxworks.h b/gcc/gthr-vxworks.h index ba813140d76..7a61a5a40f7 100644 --- a/gcc/gthr-vxworks.h +++ b/gcc/gthr-vxworks.h @@ -36,6 +36,11 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA #include "gthr-posix.h" #else +#ifdef __cplusplus +#define UNUSED(x) +#else +#define UNUSED(x) x __attribute__((unused)) +#endif #ifdef __cplusplus extern "C" { @@ -141,6 +146,8 @@ extern int __gthread_key_delete (__gthread_key_t key); extern void *__gthread_getspecific (__gthread_key_t key); extern int __gthread_setspecific (__gthread_key_t key, void *ptr); +#undef UNUSED + #ifdef __cplusplus } #endif |