diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-09-14 20:57:07 +0200 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-10-04 11:03:54 -0700 |
| commit | 65b074daa03cded3cc2c36e4eba7afc5b406b962 (patch) | |
| tree | e43473b5b656075531b91eacd1580275a1d42a59 /include/exec/cpu-all.h | |
| parent | 27c46fadf6724b68dcbe275479f86992f33d7c24 (diff) | |
| download | focaccia-qemu-65b074daa03cded3cc2c36e4eba7afc5b406b962.tar.gz focaccia-qemu-65b074daa03cded3cc2c36e4eba7afc5b406b962.zip | |
exec: Make EXCP_FOO definitions target agnostic
The EXCP_* definitions don't need to be target specific, move them to "exec/cpu-common.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Anton Johansson <anjo@rev.ng> Message-Id: <20230914185718.76241-2-philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec/cpu-all.h')
| -rw-r--r-- | include/exec/cpu-all.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h index 17c7420543..b14255923b 100644 --- a/include/exec/cpu-all.h +++ b/include/exec/cpu-all.h @@ -26,13 +26,6 @@ #include "hw/core/cpu.h" #include "qemu/rcu.h" -#define EXCP_INTERRUPT 0x10000 /* async interruption */ -#define EXCP_HLT 0x10001 /* hlt instruction reached */ -#define EXCP_DEBUG 0x10002 /* cpu stopped after a breakpoint or singlestep */ -#define EXCP_HALTED 0x10003 /* cpu is halted (waiting for external event) */ -#define EXCP_YIELD 0x10004 /* cpu wants to yield timeslice to another */ -#define EXCP_ATOMIC 0x10005 /* stop-the-world and emulate atomic */ - /* some important defines: * * HOST_BIG_ENDIAN : whether the host cpu is big endian and |