gdb: fix two comments in infrun
authorSimon Marchi <simon.marchi@efficios.com>
Wed, 21 Oct 2020 19:55:58 +0000 (15:55 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Wed, 21 Oct 2020 19:55:58 +0000 (15:55 -0400)
These comments are stale, they refer to non-existent parameters.  Fix
that.

gdb/ChangeLog:

* infrun.c (displaced_step_in_progress_thread): Fix comment.
(displaced_step_in_progress): Fix comment.

Change-Id: I7a39f1338fbfbf73153b49cbca0345d495d12762

gdb/ChangeLog
gdb/infrun.c

index 89dff4bbd89d186bffd02701281dc559dd9a2cb0..75e7ee1428c1281dffa7a75e35f067510dd33f55 100644 (file)
@@ -1,3 +1,8 @@
+2020-10-21  Simon Marchi  <simon.marchi@efficios.com>
+
+       * infrun.c (displaced_step_in_progress_thread): Fix comment.
+       (displaced_step_in_progress): Fix comment.
+
 2020-10-21  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * gdbarch.sh (make_corefile_notes): Return unique pointer.
index 942c3df20e0d6cc0400908cdf9b8b12c389dee7a..c2acea65982bd08ffc73dd4fd8e60362cc39e5f5 100644 (file)
@@ -1500,8 +1500,7 @@ displaced_step_in_progress_any_inferior ()
   return false;
 }
 
-/* Return true if thread represented by PTID is doing a displaced
-   step.  */
+/* Return true if THREAD is doing a displaced step.  */
 
 static bool
 displaced_step_in_progress_thread (thread_info *thread)
@@ -1511,7 +1510,7 @@ displaced_step_in_progress_thread (thread_info *thread)
   return get_displaced_stepping_state (thread->inf)->step_thread == thread;
 }
 
-/* Return true if process PID has a thread doing a displaced step.  */
+/* Return true if INF has a thread doing a displaced step.  */
 
 static bool
 displaced_step_in_progress (inferior *inf)