about summary refs log tree commit diff
path: root/sysdeps/unix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-14 10:39:15 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-14 10:39:15 +0000
commit6213a05545cd8052135271c25b73af2c5490e291 (patch)
tree0a902ff2a1908b1837ea073be722645408028c84 /sysdeps/unix
parent9658516adfc6e7627d43e83c947144dfbec3c285 (diff)
downloadglibc-6213a05545cd8052135271c25b73af2c5490e291.tar.gz
glibc-6213a05545cd8052135271c25b73af2c5490e291.tar.xz
glibc-6213a05545cd8052135271c25b73af2c5490e291.zip
Update.
	* sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Prepend REG_ to enum
	values and macros for register names.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r--sysdeps/unix/sysv/linux/i386/sys/ucontext.h76
1 files changed, 38 insertions, 38 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/sys/ucontext.h b/sysdeps/unix/sysv/linux/i386/sys/ucontext.h
index 89264111d4..b6762ce1ae 100644
--- a/sysdeps/unix/sysv/linux/i386/sys/ucontext.h
+++ b/sysdeps/unix/sysv/linux/i386/sys/ucontext.h
@@ -44,44 +44,44 @@ typedef greg_t gregset_t[NGREG];
 /* Number of each register is the `gregset_t' array.  */
 enum
 {
-  GS = 0,
-# define GS	GS
-  FS,
-# define FS	FS
-  ES,
-# define ES	ES
-  DS,
-# define DS	DS
-  EDI,
-# define EDI	EDI
-  ESI,
-# define ESI	ESI
-  EBP,
-# define EBP	EBP
-  ESP,
-# define ESP	ESP
-  EBX,
-# define EBX	EBX
-  EDX,
-# define EDX	EDX
-  ECX,
-# define ECX	ECX
-  EAX,
-# define EAX	EAX
-  TRAPNO,
-# define TRAPNO	TRAPNO
-  ERR,
-# define ERR	ERR
-  EIP,
-# define EIP	EIP
-  CS,
-# define CS	CS
-  EFL,
-# define EFL	EFL
-  UESP,
-# define UESP	UESP
-  SS
-# define SS	SS
+  REG_GS = 0,
+# define REG_GS		REG_GS
+  REG_FS,
+# define REG_FS		REG_FS
+  REG_ES,
+# define REG_ES		REG_ES
+  REG_DS,
+# define REG_DS		REG_DS
+  REG_EDI,
+# define REG_EDI	REG_EDI
+  REG_ESI,
+# define REG_ESI	REG_ESI
+  REG_EBP,
+# define REG_EBP	REG_EBP
+  REG_ESP,
+# define REG_ESP	REG_ESP
+  REG_EBX,
+# define REG_EBX	REG_EBX
+  REG_EDX,
+# define REG_EDX	REG_EDX
+  REG_ECX,
+# define REG_ECX	REG_ECX
+  REG_EAX,
+# define REG_EAX	REG_EAX
+  REG_TRAPNO,
+# define REG_TRAPNO	REG_TRAPNO
+  REG_ERR,
+# define REG_ERR	REG_ERR
+  REG_EIP,
+# define REG_EIP	REG_EIP
+  REG_CS,
+# define REG_CS		REG_CS
+  REG_EFL,
+# define REG_EFL	REG_EFL
+  REG_UESP,
+# define REG_UESP	REG_UESP
+  REG_SS
+# define REG_SS	REG_SS
 };
 #endif