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.
This commit is contained in:
Yao Qi 2016-05-17 08:24:26 +01:00
parent acac2e457a
commit fcdad592cd
2 changed files with 6 additions and 1 deletions

View File

@ -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):

View File

@ -2966,7 +2966,7 @@ linux_stabilize_threads (void)
}
}
find_inferior (&all_threads, unsuspend_one_lwp, NULL);
unsuspend_all_lwps (NULL);
stabilizing_threads = 0;