From: Dmitry V. Levin Date: Wed, 3 Sep 2008 00:54:40 +0000 (+0000) Subject: 2008-04-19 Dmitry V. Levin X-Git-Tag: v4.5.19~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f02cf214d9d411c074a2d8a64f84e0db2035024d;p=strace 2008-04-19 Dmitry V. Levin * process.c (prctl_options): Add more constants. --- diff --git a/ChangeLog b/ChangeLog index 7b4a0364..e9cded18 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2008-04-19 Dmitry V. Levin + * process.c (prctl_options): Add more constants. + * linux/syscallent.h: Use sys_prctl() decoder for "prctl" syscall. * linux/alpha/syscallent.h: Likewise. * linux/arm/syscallent.h: Likewise. diff --git a/process.c b/process.c index 6791ba3c..ff1960c9 100644 --- a/process.c +++ b/process.c @@ -204,6 +204,12 @@ static const struct xlat prctl_options[] = { #ifdef PR_GET_PDEATHSIG { PR_GET_PDEATHSIG, "PR_GET_PDEATHSIG" }, #endif +#ifdef PR_GET_DUMPABLE + { PR_GET_DUMPABLE, "PR_GET_DUMPABLE" }, +#endif +#ifdef PR_SET_DUMPABLE + { PR_SET_DUMPABLE, "PR_SET_DUMPABLE" }, +#endif #ifdef PR_GET_UNALIGN { PR_GET_UNALIGN, "PR_GET_UNALIGN" }, #endif