summaryrefslogtreecommitdiff
path: root/cpu-all.h
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-05-17 20:19:32 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-05-17 20:19:32 +0000
commitef792f9ddb82cd58a24ef024b6022f6cfb9f6cd2 (patch)
treebf1a0d8d7c7beeb17ded2d846fb508985230e910 /cpu-all.h
parent47cea614a15371f50df11964e5642a427fed0c5b (diff)
downloadqemu-ef792f9ddb82cd58a24ef024b6022f6cfb9f6cd2.tar.gz
added CPU_INTERRUPT_TIMER
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@814 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-all.h')
-rw-r--r--cpu-all.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu-all.h b/cpu-all.h
index 6ee93dc390..0ed5d00f4e 100644
--- a/cpu-all.h
+++ b/cpu-all.h
@@ -618,6 +618,7 @@ extern int code_copy_enabled;
#define CPU_INTERRUPT_EXIT 0x01 /* wants exit from main loop */
#define CPU_INTERRUPT_HARD 0x02 /* hardware interrupt pending */
#define CPU_INTERRUPT_EXITTB 0x04 /* exit the current TB (use for x86 a20 case) */
+#define CPU_INTERRUPT_TIMER 0x08 /* internal timer exception pending */
void cpu_interrupt(CPUState *s, int mask);
int cpu_breakpoint_insert(CPUState *env, target_ulong pc);