diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-02-16 13:19:34 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2009-02-16 13:19:34 +0100 |
commit | 09e361bbde5b4f9c74e846ff49360a42d25ec2d5 (patch) | |
tree | dcc77a0b95af985cbd224bc073c240ec95ae226c /gcc/gthr-single.h | |
parent | 70f5fc7c74889090b3989c37c302ba244ea46fcc (diff) | |
download | gcc-09e361bbde5b4f9c74e846ff49360a42d25ec2d5.zip gcc-09e361bbde5b4f9c74e846ff49360a42d25ec2d5.tar.gz gcc-09e361bbde5b4f9c74e846ff49360a42d25ec2d5.tar.bz2 |
gthr-dce.h: Uglify function parameter and local variable names.
* gthr-dce.h: Uglify function parameter and local variable names.
* gthr-gnat.h: Likewise.
* gthr-mipssde.h: Likewise.
* gthr-nks.h: Likewise.
* gthr-posix95.h: Likewise.
* gthr-posix.h: Likewise.
* gthr-rtems.h: Likewise.
* gthr-single.h: Likewise.
* gthr-solaris.h: Likewise.
* gthr-tpf.h: Likewise.
* gthr-vxworks.h: Likewise.
* gthr-win32.h: Likewise.
From-SVN: r144201
Diffstat (limited to 'gcc/gthr-single.h')
-rw-r--r-- | gcc/gthr-single.h | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/gcc/gthr-single.h b/gcc/gthr-single.h index a0a45cb..56dd8bc 100644 --- a/gcc/gthr-single.h +++ b/gcc/gthr-single.h @@ -1,6 +1,7 @@ /* Threads compatibility routines for libgcc2 and libobjc. */ /* Compile this one with gcc. */ -/* Copyright (C) 1997, 1999, 2000, 2004, 2008 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1999, 2000, 2004, 2008, 2009 + Free Software Foundation, Inc. This file is part of GCC. @@ -216,75 +217,75 @@ __gthread_active_p (void) } static inline int -__gthread_once (__gthread_once_t *once UNUSED, void (*func) (void) UNUSED) +__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) +__gthread_key_create (__gthread_key_t *__key UNUSED, void (*__func) (void *) UNUSED) { return 0; } static int UNUSED -__gthread_key_delete (__gthread_key_t key UNUSED) +__gthread_key_delete (__gthread_key_t __key UNUSED) { return 0; } static inline void * -__gthread_getspecific (__gthread_key_t key UNUSED) +__gthread_getspecific (__gthread_key_t __key UNUSED) { return 0; } static inline int -__gthread_setspecific (__gthread_key_t key UNUSED, const void *v UNUSED) +__gthread_setspecific (__gthread_key_t __key UNUSED, const void *__v UNUSED) { return 0; } static inline int -__gthread_mutex_destroy (__gthread_mutex_t *mutex UNUSED) +__gthread_mutex_destroy (__gthread_mutex_t *__mutex UNUSED) { return 0; } static inline int -__gthread_mutex_lock (__gthread_mutex_t *mutex UNUSED) +__gthread_mutex_lock (__gthread_mutex_t *__mutex UNUSED) { return 0; } static inline int -__gthread_mutex_trylock (__gthread_mutex_t *mutex UNUSED) +__gthread_mutex_trylock (__gthread_mutex_t *__mutex UNUSED) { return 0; } static inline int -__gthread_mutex_unlock (__gthread_mutex_t *mutex UNUSED) +__gthread_mutex_unlock (__gthread_mutex_t *__mutex UNUSED) { return 0; } static inline int -__gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *mutex) +__gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *__mutex) { - return __gthread_mutex_lock (mutex); + return __gthread_mutex_lock (__mutex); } static inline int -__gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *mutex) +__gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *__mutex) { - return __gthread_mutex_trylock (mutex); + return __gthread_mutex_trylock (__mutex); } static inline int -__gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex) +__gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *__mutex) { - return __gthread_mutex_unlock (mutex); + return __gthread_mutex_unlock (__mutex); } #endif /* _LIBOBJC */ |