1234567891011121314151617181920 |
- /* because people like to make things difficult */
- #undef do_clone
- #if defined __ia64__
- # define do_clone(fn, stack, flags, arg) \
- __clone2(fn, stack, sizeof(stack), flags, arg, NULL, NULL, NULL)
- #elif defined __hppa__
- # define do_clone(fn, stack, flags, arg) \
- clone(fn, stack, flags, arg)
- #else
- # define do_clone(fn, stack, flags, arg) \
- clone(fn, stack+sizeof(stack), flags, arg)
- #endif
|