diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-10-02 15:37:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-10-02 15:37:21 +0000 |
commit | bf8288adc819b5a760d3937a1252e593acaa069e (patch) | |
tree | ce110e28b0b71358919f131d6cedddc339da2e86 /sysdeps/unix/sysv/linux/ia64 | |
parent | 0d297437293d04e0f566215108ddedf527715326 (diff) | |
download | glibc-bf8288adc819b5a760d3937a1252e593acaa069e.tar.gz glibc-bf8288adc819b5a760d3937a1252e593acaa069e.tar.xz glibc-bf8288adc819b5a760d3937a1252e593acaa069e.zip |
Update.
* sysdeps/unix/sysv/linux/ia64/bits/sigstack.h (MINSIGSTKSZ): Go back to 131027 since this is what the kernel enforces.
Diffstat (limited to 'sysdeps/unix/sysv/linux/ia64')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/bits/sigstack.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h b/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h index 7ae2642426..c9c9d2fedb 100644 --- a/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h +++ b/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h @@ -41,8 +41,12 @@ enum #define SS_DISABLE SS_DISABLE }; -/* Minimum stack size for a signal handler. */ -#define MINSIGSTKSZ 131072 +/* Minimum stack size for a signal handler. + + Yes, this should be 131072 but the constant got defined incorrectly + in the kernel and we have to live with it. Users should in any case + use SIGSTKSZ as the size user-supplied buffers should have. */ +#define MINSIGSTKSZ 131027 /* System default stack size. */ #define SIGSTKSZ 262144 |