From: Roland McGrath Date: Sat, 3 Nov 2007 23:58:07 +0000 (+0000) Subject: 2007-11-03 Roland McGrath X-Git-Tag: v4.5.18~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5039fb74e0794ddd4f46dce32a1c7e010d1a658;p=strace 2007-11-03 Roland McGrath * process.c (prctl_options): Add numerous constants. From Sami Farin . Fixes RH#364401. --- diff --git a/process.c b/process.c index 65381546..2e192bc4 100644 --- a/process.c +++ b/process.c @@ -215,6 +215,42 @@ static const struct xlat prctl_options[] = { #endif #ifdef PR_SET_KEEPCAPS { PR_SET_KEEPCAPS, "PR_SET_KEEP_CAPS" }, +#endif +#ifdef PR_GET_FPEMU + { PR_GET_FPEMU, "PR_GET_FPEMU" }, +#endif +#ifdef PR_SET_FPEMU + { PR_SET_FPEMU, "PR_SET_FPEMU" }, +#endif +#ifdef PR_GET_FPEXC + { PR_GET_FPEXC, "PR_GET_FPEXC" }, +#endif +#ifdef PR_SET_FPEXC + { PR_SET_FPEXC, "PR_SET_FPEXC" }, +#endif +#ifdef PR_GET_TIMING + { PR_GET_TIMING, "PR_GET_TIMING" }, +#endif +#ifdef PR_SET_TIMING + { PR_SET_TIMING, "PR_SET_TIMING" }, +#endif +#ifdef PR_SET_NAME + { PR_SET_NAME, "PR_SET_NAME" }, +#endif +#ifdef PR_GET_NAME + { PR_GET_NAME, "PR_GET_NAME" }, +#endif +#ifdef PR_GET_ENDIAN + { PR_GET_ENDIAN, "PR_GET_ENDIAN" }, +#endif +#ifdef PR_SET_ENDIAN + { PR_SET_ENDIAN, "PR_SET_ENDIAN" }, +#endif +#ifdef PR_GET_SECCOMP + { PR_GET_SECCOMP, "PR_GET_SECCOMP" }, +#endif +#ifdef PR_SET_SECCOMP + { PR_SET_SECCOMP, "PR_SET_SECCOMP" }, #endif { 0, NULL }, };