diff options
author | Bernd Schmidt <bernds_cb1@t-online.de> | 2007-11-23 17:19:02 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds_cb1@t-online.de> | 2007-11-23 17:19:02 +0000 |
commit | 8f4f670a307a9174cfd78db8b689d545e0ed314a (patch) | |
tree | b4dcaa6f6d956df033637b71f90d20394f958b1a /libc | |
parent | b3ace38d1f7a2a9e71067af284a3ff38cfe26a35 (diff) |
mcontext_t shouldn't have a version argument, and fix REG_B0 definition.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/sysdeps/linux/bfin/sys/ucontext.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/bfin/sys/ucontext.h b/libc/sysdeps/linux/bfin/sys/ucontext.h index 0e16788c5..ac2ef94e2 100644 --- a/libc/sysdeps/linux/bfin/sys/ucontext.h +++ b/libc/sysdeps/linux/bfin/sys/ucontext.h @@ -109,7 +109,7 @@ enum REG_L3 = 35, #define REG_L3 REG_L3 REG_B_0 = 36, -#define REG_B_0 REG_B_0 +#define REG_B0 REG_B0 REG_B1 = 37, #define REG_B1 REG_B1 REG_B2 = 38, @@ -135,7 +135,6 @@ enum /* Context to describe whole processor state. */ typedef struct { - int version; gregset_t gregs; } mcontext_t; |