diff options
author | Tristan Gingold <gingold@adacore.com> | 2008-12-16 11:15:58 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2008-12-16 11:15:58 +0000 |
commit | d26b53541880db4303a08e5558a1d3d3cbf9353a (patch) | |
tree | 391438e0193d97f12b2eda4e1bbdf29d33a907bb /gdb/target.h | |
parent | 077e0a524271358ddf0dda9993f3c3e4820b2481 (diff) | |
download | gdb-d26b53541880db4303a08e5558a1d3d3cbf9353a.zip gdb-d26b53541880db4303a08e5558a1d3d3cbf9353a.tar.gz gdb-d26b53541880db4303a08e5558a1d3d3cbf9353a.tar.bz2 |
2008-12-16 Tristan Gingold <gingold@adacore.com>
* inflow.c: Remove old_sigio, handle_sigio, old_fcntl_flags,
set_sigio_trap, clear_sigio_trap definitions.
* inferior.h: Remove set_sigio_trap and clear_sigio_trap declarations.
* inf-ptrace.c (inf_ptrace_wait): Remove call to set_sigio_trap
and clear_sigio_trap.
* inf-ttrace.c (inf_ttrace_wait): Ditto.
* linux-nat.c (linux_nat_wait): Ditto.
* spu-linux-nat.c (spu_child_wait): Ditto.
* rs6000-nat.c (rs6000_wait): Ditto.
* target.c: Remove target_activity_function and target_activity_fd.
* target.h: Remove target_activity_function and target_activity_fd
declarations.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gdb/target.h b/gdb/target.h index 36dc14e..2722945 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -299,15 +299,6 @@ extern void get_target_memory (struct target_ops *ops, CORE_ADDR addr, extern ULONGEST get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr, int len); - -/* If certain kinds of activity happen, target_wait should perform - callbacks. */ -/* Right now we just call (*TARGET_ACTIVITY_FUNCTION) if I/O is possible - on TARGET_ACTIVITY_FD. */ -extern int target_activity_fd; -/* Returns zero to leave the inferior alone, one to interrupt it. */ -extern int (*target_activity_function) (void); - struct thread_info; /* fwd decl for parameter list below: */ struct target_ops |