diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-29 10:08:06 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-29 10:08:06 +0000 |
commit | ceea9225f2c59d4eae5511132fab0987107388c0 (patch) | |
tree | 0ad070128a238aa41a39b1867c563c079996afb4 /cpu-defs.h | |
parent | 9f56988753199bb3c43a6e474992e6e8c51cb25f (diff) | |
download | qemu-ceea9225f2c59d4eae5511132fab0987107388c0.tar.gz qemu-ceea9225f2c59d4eae5511132fab0987107388c0.tar.bz2 qemu-ceea9225f2c59d4eae5511132fab0987107388c0.zip |
Push common interrupt variables to cpu-defs.h (Glauber Costa)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4612 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-defs.h')
-rw-r--r-- | cpu-defs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu-defs.h b/cpu-defs.h index 7001ca4b25..f7f5f1730d 100644 --- a/cpu-defs.h +++ b/cpu-defs.h @@ -160,6 +160,10 @@ typedef struct CPUTLBEntry { int nb_watchpoints; \ int watchpoint_hit; \ \ + /* Core interrupt code */ \ + jmp_buf jmp_env; \ + int exception_index; \ + \ void *next_cpu; /* next CPU sharing TB cache */ \ int cpu_index; /* CPU index (informative) */ \ /* user data */ \ |