commit bash-20080529 snapshot

This commit is contained in:
Chet Ramey
2011-12-07 09:24:27 -05:00
parent 8943768b87
commit ed35cb4a63
48 changed files with 23347 additions and 15638 deletions
+4
View File
@@ -75,6 +75,7 @@ trap 'echo caught a child death' SIGCHLD
sleep 7 & sleep 6 & sleep 5 &
# this will only catch the first, since there's a trap on SIGCHLD
wait
trap -p SIGCHLD
@@ -84,3 +85,6 @@ trap -p SIGCHLD
trap - SIGINT QUIT TERM
trap
trap - SIGCHLD
wait