mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
44 lines
1.7 KiB
C
44 lines
1.7 KiB
C
#ifndef _CLONE_INTERNAL_H
|
|
#define _CLONE_INTERNAL_H
|
|
|
|
#include <clone3.h>
|
|
|
|
/* The clone3 syscall provides a superset of the functionality of the clone
|
|
interface. The kernel might extend __CL_ARGS struct in the future, with
|
|
each version with a different __SIZE. If the child is created, it will
|
|
start __FUNC function with __ARG arguments.
|
|
|
|
Different than kernel, the implementation also returns EINVAL for an
|
|
invalid NULL __CL_ARGS or __FUNC (similar to __clone).
|
|
|
|
All callers are responsible for correctly aligning the stack. The stack is
|
|
not aligned prior to the syscall (this differs from the exported __clone).
|
|
|
|
This function is only implemented if the ABI defines HAVE_CLONE3_WRAPPER.
|
|
*/
|
|
extern int __clone3 (struct clone_args *__cl_args, size_t __size,
|
|
int (*__func) (void *__arg), void *__arg);
|
|
|
|
/* The internal wrapper of clone/clone2 and clone3. Different than __clone3,
|
|
it will align the stack if required. If __clone3 returns -1 with ENOSYS,
|
|
fall back to clone or clone2. */
|
|
extern int __clone_internal (struct clone_args *__cl_args,
|
|
int (*__func) (void *__arg), void *__arg);
|
|
/* clone3 wrapper with a sticky check to avoid re-issuing the syscall if
|
|
it fails with ENOSYS. */
|
|
extern int __clone3_internal (struct clone_args *cl_args,
|
|
int (*func) (void *args), void *arg)
|
|
attribute_hidden;
|
|
/* The fallback code which calls clone/clone2 based on clone3 arguments. */
|
|
extern int __clone_internal_fallback (struct clone_args *__cl_args,
|
|
int (*__func) (void *__arg),
|
|
void *__arg)
|
|
attribute_hidden;
|
|
|
|
#ifndef _ISOMAC
|
|
libc_hidden_proto (__clone3)
|
|
libc_hidden_proto (__clone_internal)
|
|
#endif
|
|
|
|
#endif
|