summaryrefslogtreecommitdiffstats
path: root/tapset/aux_syscalls.stp
diff options
context:
space:
mode:
authorZhaolei <zhaolei@cn.fujitsu.com>2008-06-03 17:53:44 +0800
committerZhaolei <zhaolei@cn.fujitsu.com>2008-06-03 17:53:44 +0800
commitfc2edb49d9638e1c64c581ed61d94d3bf9aec28f (patch)
tree8a20b13135c4b89690d74a2325f07bde12339aba /tapset/aux_syscalls.stp
parentd2e5bc50742b66f6a8816c4036c6026726b87f01 (diff)
downloadsystemtap-steved-fc2edb49d9638e1c64c581ed61d94d3bf9aec28f.tar.gz
systemtap-steved-fc2edb49d9638e1c64c581ed61d94d3bf9aec28f.tar.xz
systemtap-steved-fc2edb49d9638e1c64c581ed61d94d3bf9aec28f.zip
Support for new clone flags before linux-2.6.25.
Diffstat (limited to 'tapset/aux_syscalls.stp')
-rw-r--r--tapset/aux_syscalls.stp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp
index ec7fdcb0..2bd2ced4 100644
--- a/tapset/aux_syscalls.stp
+++ b/tapset/aux_syscalls.stp
@@ -1686,11 +1686,19 @@ const _stp_val_array const _stp_fork_list[] = {
V(CLONE_CHILD_SETTID),
V(CLONE_STOPPED),
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
+ V(CLONE_NEWUTS),
V(CLONE_NEWIPC),
#endif
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
V(CLONE_NEWUSER),
#endif
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
+ V(CLONE_NEWPID),
+ V(CLONE_NEWNET),
+#endif
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
+ V(CLONE_IO),
+#endif
{0, NULL}
};
%}