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-gnat.h | |
parent | 70f5fc7c74889090b3989c37c302ba244ea46fcc (diff) | |
download | gcc-09e361bbde5b4f9c74e846ff49360a42d25ec2d5.tar.gz |
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-gnat.h')
-rw-r--r-- | gcc/gthr-gnat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gthr-gnat.h b/gcc/gthr-gnat.h index a7931c01858..51066df47bd 100644 --- a/gcc/gthr-gnat.h +++ b/gcc/gthr-gnat.h @@ -1,6 +1,6 @@ /* Threads compatibility routines for libgcc2. */ /* Compile this one with gcc. */ -/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2008, 2009 Free Software Foundation, Inc. This file is part of GCC. @@ -38,7 +38,7 @@ typedef int __gthread_mutex_t; #define __GTHREAD_MUTEX_INIT 0 -extern void __gnat_install_locks (void (*lock) (void), void (*unlock) (void)); +extern void __gnat_install_locks (void (*) (void), void (*) (void)); extern int __gthread_active_p (void); extern int __gthread_mutex_lock (__gthread_mutex_t *); extern int __gthread_mutex_unlock (__gthread_mutex_t *); |