From 0920f8ca428cbd103de28f34d53f845028f4f2c0 Mon Sep 17 00:00:00 2001 From: Alexander Lochmann Date: Thu, 7 Jul 2016 10:57:34 -0500 Subject: [PATCH] Updated PR_SET_MM_* flag list for kernels that don't support all the flags. --- tapset/linux/aux_syscalls.stp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tapset/linux/aux_syscalls.stp b/tapset/linux/aux_syscalls.stp index f1f5cabf8..110e6e95a 100644 --- a/tapset/linux/aux_syscalls.stp +++ b/tapset/linux/aux_syscalls.stp @@ -4635,12 +4635,24 @@ static const _stp_val_array const _stp_prctl_mm_option_list[] = { V(PR_SET_MM_START_STACK), V(PR_SET_MM_START_BRK), V(PR_SET_MM_BRK), +#ifdef PR_SET_MM_ARG_START V(PR_SET_MM_ARG_START), +#endif +#ifdef PR_SET_MM_ARG_END V(PR_SET_MM_ARG_END), +#endif +#ifdef PR_SET_MM_ENV_START V(PR_SET_MM_ENV_START), +#endif +#ifdef PR_SET_MM_ENV_END V(PR_SET_MM_ENV_END), +#endif +#ifdef PR_SET_MM_AUXV V(PR_SET_MM_AUXV), +#endif +#ifdef PR_SET_MM_EXE_FILE V(PR_SET_MM_EXE_FILE), +#endif #ifdef PR_SET_MM_MAP V(PR_SET_MM_MAP), #endif -- 2.43.5