1998-08-04  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/bits/sigthread.h: Use __sigset_t instead
	of sigset_t.
This commit is contained in:
Ulrich Drepper 1998-08-04 15:06:28 +00:00
parent 7cabd57c0d
commit d358336fe7
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
1998-08-04 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/bits/sigthread.h: Use __sigset_t instead
of sigset_t.
1998-08-02 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makefile (linuxthreads-version): Extract correct number from

View File

@ -25,8 +25,8 @@
/* Modify the signal mask for the calling thread. The arguments have
the same meaning as for sigprocmask(2). */
extern int pthread_sigmask __P ((int __how, __const sigset_t *__newmask,
sigset_t *__oldmask));
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));