[PATCH] Fix build errors on Ubuntu 12.04.
Vinson Lee <[email protected]> Thu, 22 May 2014 21:16:10 -0700
| Newsgroups | org.kernel.vger.trinity |
|---|---|
| Message-ID | <[email protected]> |
From: Vinson Lee <[email protected]> CC syscalls/prctl.o syscalls/prctl.c:33:13: error: ‘PR_SET_CHILD_SUBREAPER’ undeclared here (not in a function) syscalls/prctl.c:33:37: error: ‘PR_GET_CHILD_SUBREAPER’ undeclared here (not in a function) syscalls/prctl.c:34:23: error: ‘PR_GET_TID_ADDRESS’ undeclared here (not in a function) Signed-off-by: Vinson Lee <[email protected]> --- include/compat.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/compat.h b/include/compat.h index 51f0936..30edc81 100644 --- a/include/compat.h +++ b/include/compat.h @@ -257,6 +257,9 @@ enum { #ifndef PR_SET_MM #define PR_SET_MM 35 +#endif + +#ifndef PR_SET_CHILD_SUBREAPER #define PR_SET_CHILD_SUBREAPER 36 #define PR_GET_CHILD_SUBREAPER 37 #define PR_SET_NO_NEW_PRIVS 38 -- 1.7.9.5