about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-07-27 04:36:09 +0000
committerAndreas Jaeger <aj@suse.de>2001-07-27 04:36:09 +0000
commit52d38e0e4029324854a274485c86a2a69228dd92 (patch)
tree6edca8dddb0d4340aeb07f99ae177b7b6d591747
parentddf541a2868747d6579dff766f63159fd4b0d50d (diff)
downloadglibc-52d38e0e4029324854a274485c86a2a69228dd92.tar.gz
glibc-52d38e0e4029324854a274485c86a2a69228dd92.tar.xz
glibc-52d38e0e4029324854a274485c86a2a69228dd92.zip
Update.
2001-07-27  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.h (SC_GPRS): Fix
	value following change from 2001-05-30.

	* sysdeps/s390/s390-64/bits/setjmp.h (_JMPBUF_UNWINDS): Follow
	rename change from 2001-07-12 for __jmp_buf.
	Patches by Ulrich Weigand <Ulrich.Weigand@de.ibm.com>.
-rw-r--r--ChangeLog9
-rw-r--r--sysdeps/s390/s390-64/bits/setjmp.h7
2 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c13b3c4fa..587b2f655e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2001-07-27  Andreas Jaeger  <aj@suse.de>
+
+	* sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.h (SC_GPRS): Fix
+	value following change from 2001-05-30.
+
+	* sysdeps/s390/s390-64/bits/setjmp.h (_JMPBUF_UNWINDS): Follow
+	rename change from 2001-07-12 for __jmp_buf.
+	Patches by Ulrich Weigand <Ulrich.Weigand@de.ibm.com>.
+
 2001-07-26  Roland McGrath  <roland@frob.com>
 
 	* sysdeps/generic/bits/termios.h (EXTA, EXTB): Make these conditional
diff --git a/sysdeps/s390/s390-64/bits/setjmp.h b/sysdeps/s390/s390-64/bits/setjmp.h
index 4cb4d791e8..9daa4301d8 100644
--- a/sysdeps/s390/s390-64/bits/setjmp.h
+++ b/sysdeps/s390/s390-64/bits/setjmp.h
@@ -25,9 +25,9 @@
 #define __JB_GPR7	1
 #define __JB_GPR8	2
 #define __JB_GPR9	3
-#define __JB_GPR10	4 
+#define __JB_GPR10	4
 #define __JB_GPR11	5
-#define __JB_GPR12	6 
+#define __JB_GPR12	6
 #define __JB_GPR13	7
 #define __JB_GPR14	8
 #define __JB_GPR15	9
@@ -47,7 +47,6 @@ typedef struct {
 /* Test if longjmp to JMPBUF would unwind the frame
    containing a local variable at ADDRESS.  */
 #define _JMPBUF_UNWINDS(jmpbuf, address) \
-  ((int) (address) < (jmpbuf)->gregs[__JB_GPR15])
+  ((int) (address) < (jmpbuf)->__gregs[__JB_GPR15])
 
 #endif /* __S390_SETJMP_H__ */
-