summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2008-11-28 06:46:44 +1000
committerddomingo <ddomingo@redhat.com>2008-11-28 06:46:44 +1000
commite4f531a369df3fb680fa4c31c7b4127fa889cf34 (patch)
tree95214dc666fecb0522448a2a6a5329cd81742d05 /testsuite/systemtap.syscall
parentad970c8448ceeb844846251d994b5946e68be184 (diff)
parent708ce1f3a663fc765d589a7547c906d05791e5e1 (diff)
downloadsystemtap-steved-e4f531a369df3fb680fa4c31c7b4127fa889cf34.tar.gz
systemtap-steved-e4f531a369df3fb680fa4c31c7b4127fa889cf34.tar.xz
systemtap-steved-e4f531a369df3fb680fa4c31c7b4127fa889cf34.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.syscall')
-rw-r--r--testsuite/systemtap.syscall/ChangeLog5
-rw-r--r--testsuite/systemtap.syscall/forkwait.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/testsuite/systemtap.syscall/ChangeLog b/testsuite/systemtap.syscall/ChangeLog
index 7cb97dff..e3a1f8de 100644
--- a/testsuite/systemtap.syscall/ChangeLog
+++ b/testsuite/systemtap.syscall/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-27 Mark Wielaard <mjw@redhat.com>
+
+ * forkwait.c: clone (CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD)
+ is just fork ().
+
2008-10-04 Mark Wielaard <mjw@redhat.com>
* access.c: sys_access() calls through to sys_faccessat().
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--;