aboutsummaryrefslogtreecommitdiff
path: root/sim/cr16/interp.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-03-30 00:10:27 -0400
committerMike Frysinger <vapier@gentoo.org>2015-03-30 00:10:27 -0400
commit4b0cc5edf489335509e155b5af0a0e754f4e3df9 (patch)
tree39a257da3efbfd2f2aaf38ac2b258b4d6c859e10 /sim/cr16/interp.c
parent1e504675bdabc1861f2b2f515b6be3d99189e165 (diff)
downloadfsf-binutils-gdb-4b0cc5edf489335509e155b5af0a0e754f4e3df9.zip
fsf-binutils-gdb-4b0cc5edf489335509e155b5af0a0e754f4e3df9.tar.gz
fsf-binutils-gdb-4b0cc5edf489335509e155b5af0a0e754f4e3df9.tar.bz2
sim: cr16: delete NEED_UI_LOOP_HOOK handling
This hook is used only when linked into gdb, and cr16 doesn't have a gdb port anymore. Punt it.
Diffstat (limited to 'sim/cr16/interp.c')
-rw-r--r--sim/cr16/interp.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/sim/cr16/interp.c b/sim/cr16/interp.c
index c6d55f5..88c4a80 100644
--- a/sim/cr16/interp.c
+++ b/sim/cr16/interp.c
@@ -56,17 +56,6 @@ extern void sim_set_profile (int n);
extern void sim_set_profile_size (int n);
static INLINE uint8 *map_memory (unsigned phys_addr);
-#ifdef NEED_UI_LOOP_HOOK
-/* How often to run the ui_loop update, when in use */
-#define UI_LOOP_POLL_INTERVAL 0x14000
-
-/* 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 signo);
-#endif /* NEED_UI_LOOP_HOOK */
-
#ifndef INLINE
#if defined(__GNUC__) && defined(__OPTIMIZE__)
#define INLINE __inline__
@@ -1095,14 +1084,6 @@ sim_resume (SIM_DESC sd, int step, int siggnal)
/* Writeback all the DATA / PC changes */
SLOT_FLUSH ();
-
-#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 */
}
while ( !State.exception && !stop_simulator);