diff options
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/target.h b/gdb/target.h index e1deb5e..d4605ae 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -715,6 +715,9 @@ struct target_ops char *(*to_fileio_readlink) (const char *filename, int *target_errno); + /* Implement the "info proc" command. */ + void (*to_info_proc) (struct target_ops *, char *, enum info_proc_what); + /* Tracepoint-related operations. */ /* Prepare the target for a tracing run. */ @@ -942,6 +945,10 @@ extern void target_store_registers (struct regcache *regcache, int regs); struct address_space *target_thread_address_space (ptid_t); +/* Implement the "info proc" command. */ + +void target_info_proc (char *, enum info_proc_what); + /* Returns true if this target can debug multiple processes simultaneously. */ |