diff options
author | Mark Wielaard <mjw@redhat.com> | 2008-09-17 17:58:58 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2008-09-17 18:39:48 +0200 |
commit | 8844346125b135280bee9fee12cbdbceb750d898 (patch) | |
tree | 5b471373c3640a8f30141a604667910e3d69aaee /testsuite/systemtap.syscall/forkwait.c | |
parent | 3aa3a6bd7ff9730cbca2d695b4380e62f50adf31 (diff) | |
download | systemtap-steved-8844346125b135280bee9fee12cbdbceb750d898.tar.gz systemtap-steved-8844346125b135280bee9fee12cbdbceb750d898.tar.xz systemtap-steved-8844346125b135280bee9fee12cbdbceb750d898.zip |
Low byte of clone flags is always set to SIGCHLD in forkwait.c test.
Diffstat (limited to 'testsuite/systemtap.syscall/forkwait.c')
-rw-r--r-- | testsuite/systemtap.syscall/forkwait.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.syscall/forkwait.c b/testsuite/systemtap.syscall/forkwait.c index 10f8d6ac..ffc98708 100644 --- a/testsuite/systemtap.syscall/forkwait.c +++ b/testsuite/systemtap.syscall/forkwait.c @@ -12,7 +12,7 @@ int main () int status; child = fork(); - // clone (CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID) = NNNN + // clone (CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD) = NNNN if (!child) { int i = 0xfffff; while (i > 0) i--; |