diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-05 18:04:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-05 18:04:05 +0000 |
commit | d8b41dab551577f894269995f22d9f5a90439f52 (patch) | |
tree | ce4d9533171407e2a2f15ea393c405774bc2f80d | |
parent | b7f75e247b5d1c8c3d6342191e03545763e66235 (diff) | |
download | glibc-d8b41dab551577f894269995f22d9f5a90439f52.tar.gz glibc-d8b41dab551577f894269995f22d9f5a90439f52.tar.xz glibc-d8b41dab551577f894269995f22d9f5a90439f52.zip |
(MINSIGSTKSZ): Fix a typo.
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/bits/sigstack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h b/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h index 6594d5b6ec..7ae2642426 100644 --- a/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h +++ b/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998, 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2000, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -42,7 +42,7 @@ enum }; /* Minimum stack size for a signal handler. */ -#define MINSIGSTKSZ 131027 +#define MINSIGSTKSZ 131072 /* System default stack size. */ #define SIGSTKSZ 262144 |