]> sourceware.org Git - systemtap.git/commitdiff
Updated PR_SET_MM_* flag list for kernels that don't support all the flags.
authorAlexander Lochmann <alexander.lochmann@tu-dortmund.de>
Thu, 7 Jul 2016 15:57:34 +0000 (10:57 -0500)
committerDavid Smith <dsmith@redhat.com>
Thu, 7 Jul 2016 15:57:34 +0000 (10:57 -0500)
tapset/linux/aux_syscalls.stp

index f1f5cabf8bbedb3135c826760e94339ab7482f0f..110e6e95a6957afb7f23e2b3bea8c5b6396c1bf9 100644 (file)
@@ -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
This page took 0.063826 seconds and 5 git commands to generate.