diff options
Diffstat (limited to 'tapset/syscalls.stp')
-rw-r--r-- | tapset/syscalls.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/syscalls.stp b/tapset/syscalls.stp index 89b3c730..4744412a 100644 --- a/tapset/syscalls.stp +++ b/tapset/syscalls.stp @@ -956,7 +956,7 @@ probe syscall.fork = kernel.function("do_fork") { if (!__is_user_regs(regs)) { name = "fork_kernel_thread" argstr = __fork_flags(clone_flags) - } else if (clone_flags == 17) + } else if (clone_flags & 17) name = "fork" else if (clone_flags & 0x4000) name = "vfork" |