mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
14 lines
261 B
Text
Executable file
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"
|