diff options
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r-- | gdb/monitor.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h index ba44133d472..23fad577e4f 100644 --- a/gdb/monitor.h +++ b/gdb/monitor.h @@ -95,16 +95,15 @@ struct monitor_ops GDB with the value of a register. */ char *dump_registers; /* Command to dump all regs at once */ char *register_pattern; /* Pattern that picks out register from reg dump */ - void (*supply_register) PARAMS ((char *name, int namelen, - char *val, int vallen)); + void (*supply_register) (char *name, int namelen, char *val, int vallen); void (*load_routine) PARAMS ((serial_t desc, char *file, int hashmark)); /* Download routine */ int (*dumpregs) PARAMS ((void)); /* routine to dump all registers */ int (*continue_hook) PARAMS ((void)); /* Emit the continue command */ - int (*wait_filter) PARAMS ((char *buf, /* Maybe contains registers */ - int bufmax, - int *response_length, - struct target_waitstatus * status)); + int (*wait_filter) (char *buf, /* Maybe contains registers */ + int bufmax, + int *response_length, + struct target_waitstatus * status); char *load; /* load command */ char *loadresp; /* Response to load command */ char *prompt; /* monitor command prompt */ |