summaryrefslogtreecommitdiff
path: root/gdb/monitor.h
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-06-04 00:41:10 +0000
committerKevin Buettner <kevinb@redhat.com>2000-06-04 00:41:10 +0000
commit59699d8b0b3dacdc6225098eca6b4098ec4876cf (patch)
tree586da73f64c2c36999c0e8de58a8c4d4a5d14c07 /gdb/monitor.h
parenta30bce9162fdd643b4e14a7e032042a7438995a5 (diff)
downloadgdb-59699d8b0b3dacdc6225098eca6b4098ec4876cf.tar.gz
Eliminate PARAMS from function pointer declarations.gdb-post-params-removal-2000-06-04
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r--gdb/monitor.h11
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 */