GNU Binutils with patches for OS216
修订版 | 037ca1addd7af2a9ba9c0fecbeb2c2af6be7c841 (tree) |
---|---|
时间 | 2016-07-06 15:31:21 |
作者 | Markus Metzger <markus.t.metzger@inte...> |
Commiter | Markus Metzger |
infrun: export clear_proceed_status_thread
Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
gdb/
* infrun.h (clear_proceed_status_thread): New.
* infrun.c (clear_proceed_status_thread): Export.
Change-Id: I23e762997359b9769856450e89626707bad1365e
@@ -2785,10 +2785,9 @@ new_stop_id (void) | ||
2785 | 2785 | current_stop_id++; |
2786 | 2786 | } |
2787 | 2787 | |
2788 | -/* Clear out all variables saying what to do when inferior is continued. | |
2789 | - First do this, then set the ones you want, then call `proceed'. */ | |
2788 | +/* See infrun.h. */ | |
2790 | 2789 | |
2791 | -static void | |
2790 | +void | |
2792 | 2791 | clear_proceed_status_thread (struct thread_info *tp) |
2793 | 2792 | { |
2794 | 2793 | if (debug_infrun) |
@@ -80,6 +80,9 @@ extern void start_remote (int from_tty); | ||
80 | 80 | step/stepi command. */ |
81 | 81 | extern void clear_proceed_status (int step); |
82 | 82 | |
83 | +/* Clear out the proceed status of TP. */ | |
84 | +extern void clear_proceed_status_thread (struct thread_info *tp); | |
85 | + | |
83 | 86 | extern void proceed (CORE_ADDR, enum gdb_signal); |
84 | 87 | |
85 | 88 | /* The `resume' routine should only be called in special circumstances. |