diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-18 19:15:36 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-18 19:15:36 +0000 |
commit | 84d598611e42de0248b0e7689e4ebe062e1699b6 (patch) | |
tree | 1c3a237117e6da4d05253598281ac94dab624a43 /gdb/defs.h | |
parent | fa79d853b89ca298ff6a6b256e610ccc917cd33b (diff) | |
download | gdb-84d598611e42de0248b0e7689e4ebe062e1699b6.zip gdb-84d598611e42de0248b0e7689e4ebe062e1699b6.tar.gz gdb-84d598611e42de0248b0e7689e4ebe062e1699b6.tar.bz2 |
* defs.h (make_cleanup): Change PTR to void * when inside PARAMS.
Some of the following is in #ifdef CALL_DUMMY_BREAKPOINT_OFFSET.
* breakpoint.h (enum bptype): Add bp_call_dummy.
(struct bpstat_what): Add call_dummy field.
* infrun.c (wait_for_inferior): Deal with it.
* breakpoint.c (bpstat_what): Deal with call dummy breakpoint.
* infcmd.c (run_stack_dummy): Set the call dummy breakpoint.
* config/sparc/tm-sparc.h: Define CALL_DUMMY_BREAKPOINT_OFFSET.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -180,7 +180,7 @@ discard_cleanups PARAMS ((struct cleanup *)); Should be, once all calls and called-functions are cleaned up: extern struct cleanup * -make_cleanup PARAMS ((void (*function) (PTR), PTR)); +make_cleanup PARAMS ((void (*function) (void *), void *)); Until then, lint and/or various type-checking compiler options will complain about make_cleanup calls. It'd be wrong to just cast things, |