Commit 590ae889 by Stéphane Graber

Android now uses a sane clone() definition

The current Android NDK provides a clone() defintion that's identical to eglibc's so we can drop the ifdef from that one. Signed-off-by: 's avatarStéphane Graber <stgraber@ubuntu.com> Acked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
parent bff13ba2
...@@ -53,9 +53,6 @@ ...@@ -53,9 +53,6 @@
#if defined(__ia64__) #if defined(__ia64__)
int __clone2(int (*__fn) (void *__arg), void *__child_stack_base, int __clone2(int (*__fn) (void *__arg), void *__child_stack_base,
size_t __child_stack_size, int __flags, void *__arg, ...); size_t __child_stack_size, int __flags, void *__arg, ...);
#elif defined(IS_BIONIC)
int clone(int (*fn)(void *), void *child_stack,
int flags, void *arg);
#else #else
int clone(int (*fn)(void *), void *child_stack, int clone(int (*fn)(void *), void *child_stack,
int flags, void *arg, ... int flags, void *arg, ...
......
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