slightly better wording in comments
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 21 Feb 2011 02:47:50 +0000 (03:47 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 21 Feb 2011 02:47:50 +0000 (03:47 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash_test/ash-signals/sigint1.tests
shell/hush_test/hush-misc/sigint1.tests

index 20e45d9405754446aff3634e565a3882d88f2fda..3d483d32a48fd40fbd92b491d930f5123acb682f 100755 (executable)
@@ -3,9 +3,9 @@
 (sleep 1; echo Sending SIGINT to main shell PID; exec kill -INT $$) &
 
 # We create a child which exits with 0 even on SIGINT
-# (This is truly necessary only if SIGINT is generated by ^C,
+# (The complex command is necessary only if SIGINT is generated by ^C,
 # in this testcase even bare "sleep 2" would do because
-# we don't send SIGINT _to_ the_ child_...)
+# in the testcase we don't send SIGINT *to the child*...)
 $THIS_SH -c 'trap "exit 0" SIGINT; sleep 2'
 
 # In one second, we (main shell) get SIGINT here.
index 20e45d9405754446aff3634e565a3882d88f2fda..3d483d32a48fd40fbd92b491d930f5123acb682f 100755 (executable)
@@ -3,9 +3,9 @@
 (sleep 1; echo Sending SIGINT to main shell PID; exec kill -INT $$) &
 
 # We create a child which exits with 0 even on SIGINT
-# (This is truly necessary only if SIGINT is generated by ^C,
+# (The complex command is necessary only if SIGINT is generated by ^C,
 # in this testcase even bare "sleep 2" would do because
-# we don't send SIGINT _to_ the_ child_...)
+# in the testcase we don't send SIGINT *to the child*...)
 $THIS_SH -c 'trap "exit 0" SIGINT; sleep 2'
 
 # In one second, we (main shell) get SIGINT here.