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.1.0.alpha3~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecec0126b595a4bafc43023f0fb9f072b61a907e;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 366250333..e493899cd 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" };