• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

修订版037ca1addd7af2a9ba9c0fecbeb2c2af6be7c841 (tree)
时间2016-07-06 15:31:21
作者Markus Metzger <markus.t.metzger@inte...>
CommiterMarkus Metzger

Log Message

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

更改概述

差异

--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -2785,10 +2785,9 @@ new_stop_id (void)
27852785 current_stop_id++;
27862786 }
27872787
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. */
27902789
2791-static void
2790+void
27922791 clear_proceed_status_thread (struct thread_info *tp)
27932792 {
27942793 if (debug_infrun)
--- a/gdb/infrun.h
+++ b/gdb/infrun.h
@@ -80,6 +80,9 @@ extern void start_remote (int from_tty);
8080 step/stepi command. */
8181 extern void clear_proceed_status (int step);
8282
83+/* Clear out the proceed status of TP. */
84+extern void clear_proceed_status_thread (struct thread_info *tp);
85+
8386 extern void proceed (CORE_ADDR, enum gdb_signal);
8487
8588 /* The `resume' routine should only be called in special circumstances.