Sign in
nest-open-source
/
nest-learning-thermostat
/
5.1.6
/
busybox
/
b2cf790ce23df9cace07ab4486c11f983c120d3d
/
.
/
busybox-1.19.3
/
shell
/
ash_test
/
ash-signals
/
signal3.tests
blob: b56c2d97eef33cb80c59eee77bfd6ad185daf058 [
file
] [
log
] [
blame
]
#!/bin/sh
$THIS_SH
-
c
'
hup() {
echo "child got HUP"
}
trap hup HUP
echo "child sleeps"
sleep 1
echo "child exits"
'
&
child
=
$
!
sleep
0.1
# let child install handler first
kill
-
HUP $child
wait
echo
"parent exits"