Add reset_schedlock declaration in target.h.

This patches improves a couple of previous patches:
  - one that introduces reset_schedlock, but failed to add a declarationl;
  - one that was checked in to avoid a compilation failure due to that
    missing declaration.
It also improves the declaration itself to better conform to our coding
practices.  Same for the comments.

2010-05-17  Joel Brobecker  <brobecker@adacore.com>

        * target.h (reset_schedlock): Add declaration.
        * infrun.c (reset_schedlock): Add missing void in function profile.
        * target.c (target_mourn_inferior): Delete local declaration of
        reset_schedlock.  Style-fix in comment.
This commit is contained in:
Joel Brobecker
2010-05-17 05:31:00 +00:00
parent 6d53bf82fc
commit 070abf125e
4 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2010-05-17 Joel Brobecker <brobecker@adacore.com>
* target.h (reset_schedlock): Add declaration.
* infrun.c (reset_schedlock): Add missing void in function profile.
* target.c (target_mourn_inferior): Delete local declaration of
reset_schedlock. Style-fix in comment.
2010-05-17 Hui Zhu <teawater@gmail.com> 2010-05-17 Hui Zhu <teawater@gmail.com>
* target.c (target_mourn_inferior): Extern reset_schedlock. * target.c (target_mourn_inferior): Extern reset_schedlock.

View File

@ -1420,10 +1420,11 @@ set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
} }
} }
/* reset_schedlock -- public */ /* If SCHEDULER_MODE is on, then set it back to off. Warn the user
about the change. */
void void
reset_schedlock () reset_schedlock (void)
{ {
if (scheduler_mode == schedlock_on) if (scheduler_mode == schedlock_on)
{ {

View File

@ -2244,9 +2244,8 @@ void
target_mourn_inferior (void) target_mourn_inferior (void)
{ {
struct target_ops *t; struct target_ops *t;
extern void reset_schedlock ();
/* Clear schedlock in infrun.c */ /* Clear schedlock in infrun.c. */
reset_schedlock (); reset_schedlock ();
for (t = current_target.beneath; t != NULL; t = t->beneath) for (t = current_target.beneath; t != NULL; t = t->beneath)

View File

@ -873,6 +873,8 @@ int target_write_memory_blocks (VEC(memory_write_request_s) *requests,
/* From infrun.c. */ /* From infrun.c. */
extern void reset_schedlock (void);
extern int inferior_has_forked (ptid_t pid, ptid_t *child_pid); extern int inferior_has_forked (ptid_t pid, ptid_t *child_pid);
extern int inferior_has_vforked (ptid_t pid, ptid_t *child_pid); extern int inferior_has_vforked (ptid_t pid, ptid_t *child_pid);