1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00
* sysdeps/unix/sysv/linux/ia64/bits/sigstack.h (MINSIGSTKSZ): Go
	back to 131027 since this is what the kernel enforces.
This commit is contained in:
Ulrich Drepper
2003-10-02 15:37:21 +00:00
parent 0d29743729
commit bf8288adc8
2 changed files with 9 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
2003-10-02 Ulrich Drepper <drepper@redhat.com> 2003-10-02 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/ia64/bits/sigstack.h (MINSIGSTKSZ): Go
back to 131027 since this is what the kernel enforces.
* inet/getnameinfo.c: Move domain out of nrl_domainname scope and * inet/getnameinfo.c: Move domain out of nrl_domainname scope and
define it with libc_freeres_ptr. define it with libc_freeres_ptr.

View File

@@ -41,8 +41,12 @@ enum
#define SS_DISABLE SS_DISABLE #define SS_DISABLE SS_DISABLE
}; };
/* Minimum stack size for a signal handler. */ /* Minimum stack size for a signal handler.
#define MINSIGSTKSZ 131072
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. */ /* System default stack size. */
#define SIGSTKSZ 262144 #define SIGSTKSZ 262144