diff options
Diffstat (limited to 'sim/arm/armemu.c')
-rw-r--r-- | sim/arm/armemu.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/sim/arm/armemu.c b/sim/arm/armemu.c index 07bfbb6..09dfeaf 100644 --- a/sim/arm/armemu.c +++ b/sim/arm/armemu.c @@ -48,17 +48,6 @@ static void Handle_Store_Double (ARMul_State *, ARMword); #define LDEFAULT (0) /* default : do nothing */ #define LSCC (1) /* set condition codes on result */ -#ifdef NEED_UI_LOOP_HOOK -/* How often to run the ui_loop update, when in use. */ -#define UI_LOOP_POLL_INTERVAL 0x32000 - -/* Counter for the ui_loop_hook update. */ -static long ui_loop_hook_counter = UI_LOOP_POLL_INTERVAL; - -/* Actual hook to call to run through gdb's gui event loop. */ -extern int (*deprecated_ui_loop_hook) (int); -#endif /* NEED_UI_LOOP_HOOK */ - extern int stop_simulator; /* Short-hand macros for LDR/STR. */ @@ -3882,14 +3871,6 @@ check_PMUintr: donext: #endif -#ifdef NEED_UI_LOOP_HOOK - if (deprecated_ui_loop_hook != NULL && ui_loop_hook_counter-- < 0) - { - ui_loop_hook_counter = UI_LOOP_POLL_INTERVAL; - deprecated_ui_loop_hook (0); - } -#endif /* NEED_UI_LOOP_HOOK */ - if (state->Emulate == ONCE) state->Emulate = STOP; /* If we have changed mode, allow the PC to advance before stopping. */ |