This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Use unsuspend_all_lwps


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=fcdad592cd1f76046c5e4b7a2b0337e146d1e796

commit fcdad592cd1f76046c5e4b7a2b0337e146d1e796
Author: Yao Qi <yao.qi@linaro.org>
Date:   Tue May 17 08:24:26 2016 +0100

    Use unsuspend_all_lwps
    
    This patch is to replace find_inferior (&all_threads, unsuspend_one_lwp, NULL)
    with unsuspend_all_lwps (NULL), which is shorter.  They are equivalent
    to each other.
    
    gdb/gdbserver:
    
    2016-05-17  Yao Qi  <yao.qi@linaro.org>
    
    	* linux-low.c (linux_stabilize_threads): Call unsuspend_all_lwps
    	instead of find_inferior.

Diff:
---
 gdb/gdbserver/ChangeLog   | 5 +++++
 gdb/gdbserver/linux-low.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index f05144a..8b37925 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,3 +1,8 @@
+2016-05-17  Yao Qi  <yao.qi@linaro.org>
+
+	* linux-low.c (linux_stabilize_threads): Call unsuspend_all_lwps
+	instead of find_inferior.
+
 2016-05-05  Yao Qi  <yao.qi@linaro.org>
 
 	* linux-arm-low.c (get_next_pcs_read_memory_unsigned_integer):
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c
index 8e1e2fc..81134b0 100644
--- a/gdb/gdbserver/linux-low.c
+++ b/gdb/gdbserver/linux-low.c
@@ -2966,7 +2966,7 @@ linux_stabilize_threads (void)
 	}
     }
 
-  find_inferior (&all_threads, unsuspend_one_lwp, NULL);
+  unsuspend_all_lwps (NULL);
 
   stabilizing_threads = 0;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]