From 0f9603991c8c94c318c85a759704b25f13edef1b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 13 Oct 2002 01:31:30 +0000 Subject: It turns out that __thread is now a gcc keyword. We used __thread in a few spots in our header files. In this change I do a s/__thread/__thread_id/ so we no longer conflict with newer CVS versions of gcc (such as the patched up gcc 3.2 included with RedHat 3.0). -Erik --- libpthread/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libpthread/linuxthreads') diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h index c9b1dcf1b..36b11b040 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h @@ -32,6 +32,6 @@ extern int pthread_sigmask __P ((int __how, __const __sigset_t *__newmask, __sigset_t *__oldmask)); /* Send signal SIGNO to the given thread. */ -extern int pthread_kill __P ((pthread_t __thread, int __signo)); +extern int pthread_kill __P ((pthread_t __thread_id, int __signo)); #endif /* bits/sigthread.h */ -- cgit v1.2.3