Commit 675693a5 by Dennis Schridde Committed by Stéphane Graber

Build fix for ia64: Declare __clone2 in lxc/namespace.h

parent 72280e1c
...@@ -49,7 +49,11 @@ ...@@ -49,7 +49,11 @@
#ifndef CLONE_NEWNET #ifndef CLONE_NEWNET
# define CLONE_NEWNET 0x40000000 # define CLONE_NEWNET 0x40000000
#endif #endif
#ifdef IS_BIONIC
#if defined(__ia64__)
int __clone2(int (*__fn) (void *__arg), void *__child_stack_base,
size_t __child_stack_size, int __flags, void *__arg, ...);
#elif defined(IS_BIONIC)
int clone(int (*fn)(void *), void *child_stack, int clone(int (*fn)(void *), void *child_stack,
int flags, void *arg); int flags, void *arg);
#else #else
......
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