Commit 28f3d36f by Stéphane Graber

conf.c: Define MS_PRIVATE for Android

parent 6c68b9dc
...@@ -160,6 +160,10 @@ return -1; ...@@ -160,6 +160,10 @@ return -1;
#define __S_ISTYPE(mode, mask) (((mode) & S_IFMT) == (mask)) #define __S_ISTYPE(mode, mask) (((mode) & S_IFMT) == (mask))
#endif #endif
#ifndef MS_PRIVATE
#define MS_PRIVATE (1<<18)
#endif
char *lxchook_names[NUM_LXC_HOOKS] = { char *lxchook_names[NUM_LXC_HOOKS] = {
"pre-start", "pre-mount", "mount", "autodev", "start", "post-stop", "clone" }; "pre-start", "pre-mount", "mount", "autodev", "start", "post-stop", "clone" };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment