diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-05-25 18:09:09 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-05-25 18:09:09 +0000 |
commit | 392a587b0562bfd8561bc15ad2625a4f49f461f0 (patch) | |
tree | 933e0970b7845c901c7ea3e128fa9cb0dcf9fe14 /gdb/infrun.c | |
parent | 751d21b5b946a4a451552fbac692b14abea3d816 (diff) | |
download | gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.zip gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.tar.gz gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.tar.bz2 |
import gdb-1999-05-25 snapshot
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 81b288d..a051ec1 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -104,6 +104,32 @@ static int thread_step_needed = 0; static int use_thread_step_needed = USE_THREAD_STEP_NEEDED; +static void follow_inferior_fork PARAMS ((int parent_pid, + int child_pid, + int has_forked, + int has_vforked)); + +static void follow_fork PARAMS ((int parent_pid, int child_pid)); + +static void follow_vfork PARAMS ((int parent_pid, int child_pid)); + +static void set_schedlock_func PARAMS ((char *args, int from_tty, + struct cmd_list_element *c)); + +static int is_internal_shlib_eventpoint PARAMS ((struct breakpoint *ep)); + +static int stopped_for_internal_shlib_event PARAMS ((bpstat bs)); + +static int stopped_for_shlib_catchpoint PARAMS ((bpstat bs, + struct breakpoint **cp_p)); + +#if __STDC__ +struct execution_control_state; +#endif +static int currently_stepping PARAMS ((struct execution_control_state *ecs)); + +static void xdb_handle_command PARAMS ((char *args, int from_tty)); + void _initialize_infrun PARAMS ((void)); /* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the @@ -2907,7 +2933,7 @@ stop_stepping: /* Are we in the middle of stepping? */ -int +static int currently_stepping (ecs) struct execution_control_state *ecs; { |