From: Stéphane Graber Date: Mon, 13 Oct 2014 10:50:20 +0000 (+0200) Subject: conf.c: Define MS_PRIVATE for Android X-Git-Tag: lxc-1.0.7~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28f3d36f885e22fea0d397aaf861a5ab8310f46f;p=thirdparty%2Flxc.git conf.c: Define MS_PRIVATE for Android Signed-off-by: Stéphane Graber --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index d5f6bc819..71e49baa5 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -160,6 +160,10 @@ return -1; #define __S_ISTYPE(mode, mask) (((mode) & S_IFMT) == (mask)) #endif +#ifndef MS_PRIVATE +#define MS_PRIVATE (1<<18) +#endif + char *lxchook_names[NUM_LXC_HOOKS] = { "pre-start", "pre-mount", "mount", "autodev", "start", "post-stop", "clone" };