diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2000-12-27 00:13:57 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2000-12-27 00:13:57 +0000 |
commit | 8a93913d2652b0f3f42b5d2d9214e16a1f115494 (patch) | |
tree | b00e45a538ce607b2ee15c2b8b0994a2f154c17a /winsup/cygwin/cygwin.din | |
parent | 2803e941b340e21113bfff9e22e1bc25ba5f9990 (diff) | |
download | newlib-8a93913d2652b0f3f42b5d2d9214e16a1f115494.zip newlib-8a93913d2652b0f3f42b5d2d9214e16a1f115494.tar.gz newlib-8a93913d2652b0f3f42b5d2d9214e16a1f115494.tar.bz2 |
* cygwin.din: Add symbols for `getrlimit' and `setrlimit'.
* exceptions.cc (stackdump): Avoid creating stackdump when
`rlim_core' is 0.
* resource.cc: New global variable `rlim_core'.
(getrlimit): New function.
(setrlimit): Ditto.
include/cygwin/version.h: Bump minor API version to 32 due to
adding `getrlimit' and `setrlimit'.
include/sys/resource.h: Add defines, types and prototypes for
`getrlimit' and `setrlimit'.
Diffstat (limited to 'winsup/cygwin/cygwin.din')
-rw-r--r-- | winsup/cygwin/cygwin.din | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index 8bb86ec..c01a4b7 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -347,6 +347,8 @@ getpid _getpid = getpid getppid _getppid = getppid +getrlimit +_getrlimit = getrlimit getrusage _getrusage = getrusage gets @@ -622,6 +624,8 @@ setlocale _setlocale = setlocale setpgid _setpgid = setpgid +setrlimit +_setrlimit = setrlimit setsid _setsid = setsid settimeofday |