|
From: <sv...@va...> - 2012-08-15 13:27:31
|
philippe 2012-08-15 14:27:23 +0100 (Wed, 15 Aug 2012)
New Revision: 12873
Log:
Use -s USR1 instead of -10 to send SIGUSR1 signal
On mips32, 10 is SIGBUS. This was making all tests using
simulate_control_c looping for ever or a long time.
Modified files:
trunk/gdbserver_tests/simulate_control_c
Modified: trunk/gdbserver_tests/simulate_control_c (+1 -1)
===================================================================
--- trunk/gdbserver_tests/simulate_control_c 2012-08-14 23:28:31 +01:00 (rev 12872)
+++ trunk/gdbserver_tests/simulate_control_c 2012-08-15 14:27:23 +01:00 (rev 12873)
@@ -24,4 +24,4 @@
sleep 1
done
sleep $SLEEP
- kill -10 $VGDBPID) &
+ kill -s USR1 $VGDBPID) &
|