diff options
author | Joel Brobecker <brobecker@gnat.com> | 2010-05-17 05:31:00 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2010-05-17 05:31:00 +0000 |
commit | 070abf125e052204c4e49f0939a9e8a4539453e9 (patch) | |
tree | 9e6710441add16a9922ee1d86eefd1edcd5bca2f /gdb/target.c | |
parent | 6d53bf82fce9ddb0b77d75c892e98fead20c573a (diff) | |
download | gdb-070abf125e052204c4e49f0939a9e8a4539453e9.zip gdb-070abf125e052204c4e49f0939a9e8a4539453e9.tar.gz gdb-070abf125e052204c4e49f0939a9e8a4539453e9.tar.bz2 |
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.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/target.c b/gdb/target.c index cee3582..ebcf51c 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -2244,9 +2244,8 @@ void target_mourn_inferior (void) { struct target_ops *t; - extern void reset_schedlock (); - /* Clear schedlock in infrun.c */ + /* Clear schedlock in infrun.c. */ reset_schedlock (); for (t = current_target.beneath; t != NULL; t = t->beneath) |