android_mt6572_jiabo/external/busybox/shell/ash_test/ash-signals/signal5.tests
2025-09-05 16:56:03 +08:00

14 lines
261 B
Text
Executable file

trap "echo USR1 received" USR1
stub() {
echo "Sleeping"
sleep $1
echo "$1 sec passed, sending USR1 to parent"
kill -USR1 $$
}
stub 3 &
stub 2 &
sleep 1
until { echo "Waiting"; wait; } do
echo "Wait exit code: $?"
done
echo "Wait returned 0"