]> granicus.if.org Git - strace/commitdiff
2008-04-19 Dmitry V. Levin <ldv@altlinux.org>
authorDmitry V. Levin <ldv@altlinux.org>
Wed, 3 Sep 2008 00:54:40 +0000 (00:54 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Wed, 3 Sep 2008 00:54:40 +0000 (00:54 +0000)
* process.c (prctl_options): Add more constants.

ChangeLog
process.c

index 7b4a03649ea857284ef45c9f5e74f86173b6d51c..e9cded1857cd0d31c65397d3ab53123fc4689bbd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2008-04-19  Dmitry V. Levin <ldv@altlinux.org>
 
+       * 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.
index 6791ba3c9edc13079ae5a1f39c7d1dde9116f3cb..ff1960c9c71fe0c2cb07d159d3e54db345d1021c 100644 (file)
--- 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