diff options
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/infrun.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d8635f1..042f885 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2012-11-30 Yao Qi <yao@codesourcery.com> + + * infrun.c: Make the declaration of 'init_infwait_state' + static. + (init_infwait_state): Make it 'static'. + 2012-11-29 Ulrich Weigand <uweigand@de.ibm.com> * python/python.c (finalize_python): Cast unused PyGILState_Ensure diff --git a/gdb/infrun.c b/gdb/infrun.c index e7c20e1..d0ff62a 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -397,7 +397,7 @@ static void context_switch (ptid_t ptid); void init_thread_stepping_state (struct thread_info *tss); -void init_infwait_state (void); +static void init_infwait_state (void); static const char follow_fork_mode_child[] = "child"; static const char follow_fork_mode_parent[] = "parent"; @@ -3033,7 +3033,7 @@ adjust_pc_after_break (struct execution_control_state *ecs) } } -void +static void init_infwait_state (void) { waiton_ptid = pid_to_ptid (-1); |