From b5121873c8e4cf5c89105d93b76c1fe7c8f10811 Mon Sep 17 00:00:00 2001 From: hiramatu Date: Fri, 4 Jan 2008 19:39:54 +0000 Subject: 2008-1-4 Masami Hiramatsu * aux_syscalls.stp (_stp_fork_list): Check kernel version for new flags. --- tapset/ChangeLog | 5 +++++ tapset/aux_syscalls.stp | 4 ++++ 2 files changed, 9 insertions(+) (limited to 'tapset') diff --git a/tapset/ChangeLog b/tapset/ChangeLog index 0cec6fc3..5519ef58 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,8 @@ +2008-1-4 Masami Hiramatsu + + * aux_syscalls.stp (_stp_fork_list): Check kernel version for new + flags. + 2008-1-4 Masami Hiramatsu PR5152 diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index 9120c4e6..da72a7ff 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -1685,8 +1685,12 @@ const _stp_val_array const _stp_fork_list[] = { V(CLONE_UNTRACED), V(CLONE_CHILD_SETTID), V(CLONE_STOPPED), +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19) V(CLONE_NEWIPC), +#endif +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) V(CLONE_NEWUSER), +#endif {0, NULL} }; %} -- cgit