From: Aleksander Morgado Date: Tue, 12 Feb 2013 13:26:17 +0000 (+0100) Subject: missing: define MS_REC and MS_SHARED if not defined already X-Git-Tag: v198~287^2~4 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=a96215285a9566668a5d92c1342888da7596144b missing: define MS_REC and MS_SHARED if not defined already --- diff --git a/src/shared/missing.h b/src/shared/missing.h index c53579ff7..d4ba0d3dc 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -196,6 +196,14 @@ static inline pid_t gettid(void) { #define MS_STRICTATIME (1<<24) #endif +#ifndef MS_REC +#define MS_REC 16384 +#endif + +#ifndef MS_SHARED +#define MS_SHARED (1<<20) +#endif + #ifndef PR_SET_NO_NEW_PRIVS #define PR_SET_NO_NEW_PRIVS 38 #endif