diff options
author | Christopher Faylor <me@cgf.cx> | 2004-02-03 21:59:27 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-02-03 21:59:27 +0000 |
commit | c571716c6406baaab8a831eca54756e7ac8f9554 (patch) | |
tree | 8e100bb8cea2397de8fcb1e8ddbe984beda856ce /winsup/cygwin/cygtls.h | |
parent | 50be1d78d9c6ab81a269669fbc49a3ef36587078 (diff) | |
download | newlib-c571716c6406baaab8a831eca54756e7ac8f9554.zip newlib-c571716c6406baaab8a831eca54756e7ac8f9554.tar.gz newlib-c571716c6406baaab8a831eca54756e7ac8f9554.tar.bz2 |
* Makefile.in (DLL_OFILES): Add strsig.o.
* cygtls.h (_local_storage::signamebuf) New element.
* sysconf.cc (sysconf): Implement _SC_RTSIG_MAX.
* tlsoffset.h: Regenerate.
* include/limits.h (_POSIX_RTSIG_MAX): New define.
(RTSIG_MAX): Ditto.
* include/cygwin/signal.h (SIGRTMIN): New define.
(SIGRTMAX): Ditto.
(NSIG): Bump.
* strsig.cc: New file.
Diffstat (limited to 'winsup/cygwin/cygtls.h')
-rw-r--r-- | winsup/cygwin/cygtls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/cygtls.h b/winsup/cygwin/cygtls.h index 0fa1b1b..45d0679 100644 --- a/winsup/cygwin/cygtls.h +++ b/winsup/cygwin/cygtls.h @@ -82,6 +82,7 @@ struct _local_storage struct protoent *protoent_buf; struct servent *servent_buf; struct hostent *hostent_buf; + char signamebuf[sizeof ("Unknown signal XX")]; }; /* Please keep this file simple. Changes to the below structure may require |