summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall/forkwait.c
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2008-11-27 14:45:16 +0100
committerMark Wielaard <mjw@redhat.com>2008-11-27 14:45:16 +0100
commitd3dc1c0b33e615f9c1b8eb6c7b12bc062f3d9de4 (patch)
tree92a0b4019aa2f32bcc996614790e5d9c372df168 /testsuite/systemtap.syscall/forkwait.c
parent349dc70e4967d0ae1fd7d504bd2c5c13f7b30fd8 (diff)
downloadsystemtap-steved-d3dc1c0b33e615f9c1b8eb6c7b12bc062f3d9de4.tar.gz
systemtap-steved-d3dc1c0b33e615f9c1b8eb6c7b12bc062f3d9de4.tar.xz
systemtap-steved-d3dc1c0b33e615f9c1b8eb6c7b12bc062f3d9de4.zip
clone (CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD) is just fork ().
Diffstat (limited to 'testsuite/systemtap.syscall/forkwait.c')
-rw-r--r--testsuite/systemtap.syscall/forkwait.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.syscall/forkwait.c b/testsuite/systemtap.syscall/forkwait.c
index ffc98708..bf7516f6 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|SIGCHLD) = NNNN
+ // fork () = NNNN
if (!child) {
int i = 0xfffff;
while (i > 0) i--;