diff options
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index e36e42e..d40ba3e 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -6629,7 +6629,9 @@ siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var, struct infcall_suspend_state { struct thread_suspend_state thread_suspend; +#if 0 /* Currently unused and empty structures are not valid C. */ struct inferior_suspend_state inferior_suspend; +#endif /* Other fields: */ CORE_ADDR stop_pc; @@ -6683,7 +6685,9 @@ save_infcall_suspend_state (void) } inf_state->thread_suspend = tp->suspend; +#if 0 /* Currently unused and empty structures are not valid C. */ inf_state->inferior_suspend = inf->suspend; +#endif /* run_inferior_call will not use the signal due to its `proceed' call with GDB_SIGNAL_0 anyway. */ @@ -6707,7 +6711,9 @@ restore_infcall_suspend_state (struct infcall_suspend_state *inf_state) struct gdbarch *gdbarch = get_regcache_arch (regcache); tp->suspend = inf_state->thread_suspend; +#if 0 /* Currently unused and empty structures are not valid C. */ inf->suspend = inf_state->inferior_suspend; +#endif stop_pc = inf_state->stop_pc; |