diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-02-09 16:49:55 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-02-09 16:49:55 +0000 |
commit | ce4defa062c5e6d940f73a1013f8770f23b0f4bf (patch) | |
tree | 685dfe397fa69b4ef03be4a197644a4b6daa86f7 /target-arm/cpu.h | |
parent | b88a38324b9cc469d6fffaecacbeb106a248a4cf (diff) | |
download | hqemu-ce4defa062c5e6d940f73a1013f8770f23b0f4bf.zip hqemu-ce4defa062c5e6d940f73a1013f8770f23b0f4bf.tar.gz |
Arm Linux EABI syscall support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1756 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-arm/cpu.h')
-rw-r--r-- | target-arm/cpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 7cc7da6..052634c 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -110,6 +110,11 @@ typedef struct CPUARMState { float_status fp_status; } vfp; +#if defined(CONFIG_USER_ONLY) + /* For usermode syscall translation. */ + int eabi; +#endif + CPU_COMMON } CPUARMState; |