This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Fix a typo in ia64


MINSIGSTKSZ is supposed to be 128K for ia64. But it is 131027 due to
a typo. Kernel has been fixed. Here is a patch for glibc.


H.J.
----
2003-09-04  H.J. Lu  <hongjiu.lu@intel.com>

	* sysdeps/unix/sysv/linux/ia64/bits/sigstack.h (MINSIGSTKSZ):
	Fix a typo.

--- glibc/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h-	2003-09-04 16:38:42.724054419 -0700
+++ glibc/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h	2003-09-04 16:38:54.587281400 -0700
@@ -42,7 +42,7 @@
 };
 
 /* Minimum stack size for a signal handler.  */
-#define MINSIGSTKSZ	131027
+#define MINSIGSTKSZ	131072
 
 /* System default stack size.  */
 #define SIGSTKSZ	262144


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]