Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-02-04 00:59:27 +0300
committerChristopher Faylor <me@cgf.cx>2004-02-04 00:59:27 +0300
commitc571716c6406baaab8a831eca54756e7ac8f9554 (patch)
tree8e100bb8cea2397de8fcb1e8ddbe984beda856ce /winsup/cygwin/sysconf.cc
parent50be1d78d9c6ab81a269669fbc49a3ef36587078 (diff)
* 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/sysconf.cc')
-rw-r--r--winsup/cygwin/sysconf.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/sysconf.cc b/winsup/cygwin/sysconf.cc
index b5a2b383d..5722ed366 100644
--- a/winsup/cygwin/sysconf.cc
+++ b/winsup/cygwin/sysconf.cc
@@ -120,6 +120,8 @@ sysconf (int in)
}
return spi.AvailablePages;
}
+ case _SC_RTSIG_MAX:
+ return RTSIG_MAX;
}
/* Invalid input or unimplemented sysconf name */