diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-09-12 21:33:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-09-12 21:33:22 +0000 |
commit | b39c6f8b7a847270f8b0a0c9f101535cce29d00e (patch) | |
tree | 32774357959d3cd9b0f93708f9c2b7598c80885e /linuxthreads | |
parent | c06cc21c043b02d0d7c078730695be370c66571c (diff) | |
download | glibc-b39c6f8b7a847270f8b0a0c9f101535cce29d00e.tar.gz glibc-b39c6f8b7a847270f8b0a0c9f101535cce29d00e.tar.xz glibc-b39c6f8b7a847270f8b0a0c9f101535cce29d00e.zip |
Update.
1998-09-12 Mark Kettenis <kettenis@phys.uva.nl> * sysdeps/generic/segfault.c (install_handler): Install signal handler with SA_ONSTACK instead of setting the stack flags to SS_ONSTACK. Do not install handler for SIGSTKFLT if it is not defined. 1998-09-12 14:24 -0400 Zack Weinberg <zack@rabi.phys.columbia.edu> * signal/signal.h: Fix multiple inclusion guard to cover the entire file. * wcsmbs/wchar.h: Remove prototype of internal function __mbsrtowcs. * sysdeps/i386/i486/bits/string.h (memchr): Don't do arithmetic on `void *'.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 5 | ||||
-rw-r--r-- | linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 2812806fe7..b33db03c35 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +1998-09-12 14:24 -0400 Zack Weinberg <zack@rabi.phys.columbia.edu> + + * linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h: Add + multiple inclusion guard. + 1998-09-02 11:08 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * signals.c (sigaction): Check that sig is less than NSIG to avoid diff --git a/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h b/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h index 7bd0974409..c9b1dcf1be 100644 --- a/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h +++ b/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h @@ -17,6 +17,9 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef _BITS_SIGTHREAD_H +#define _BITS_SIGTHREAD_H 1 + #if !defined _SIGNAL_H && !defined _PTHREAD_H # error "Never include this file directly. Use <pthread.h> instead" #endif @@ -30,3 +33,5 @@ extern int pthread_sigmask __P ((int __how, __const __sigset_t *__newmask, /* Send signal SIGNO to the given thread. */ extern int pthread_kill __P ((pthread_t __thread, int __signo)); + +#endif /* bits/sigthread.h */ |