diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-05-21 17:58:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-05-21 17:58:38 +0000 |
commit | 12b7f470d21eeb897e25b9ef6dae4bfd787168f6 (patch) | |
tree | b10f4c03cb2697bb0952cd8533a142c4e1e7d610 /linuxthreads/sysdeps/unix/sysv/linux/bits | |
parent | 4a0de63bbe1d64a9780e586ae801a78d483c339e (diff) | |
download | glibc-12b7f470d21eeb897e25b9ef6dae4bfd787168f6.tar glibc-12b7f470d21eeb897e25b9ef6dae4bfd787168f6.tar.gz glibc-12b7f470d21eeb897e25b9ef6dae4bfd787168f6.tar.bz2 glibc-12b7f470d21eeb897e25b9ef6dae4bfd787168f6.zip |
Update.
2002-05-21 Ulrich Drepper <drepper@redhat.com>
* sysdeps/pthread/pthread.h (pthread_create): Rename first
parameter.
(pthread_cancel): Likewise.
* internals.h (__pthread_create_2_1): Likewise.
* sysdeps/unix/sysv/linux/bits/sigthread.h (pthread_kill): Likewise.
Diffstat (limited to 'linuxthreads/sysdeps/unix/sysv/linux/bits')
-rw-r--r-- | linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h b/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h index b86e75f20e..df2bcac291 100644 --- a/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h +++ b/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h @@ -1,5 +1,5 @@ /* Signal handling function for threaded programs. - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -33,6 +33,6 @@ extern int pthread_sigmask (int __how, __sigset_t *__restrict __oldmask)__THROW; /* Send signal SIGNO to the given thread. */ -extern int pthread_kill (pthread_t __thread, int __signo) __THROW; +extern int pthread_kill (pthread_t __threadid, int __signo) __THROW; #endif /* bits/sigthread.h */ |