Penguin
Annotated edit history of clone(2) version 5, including all changes. View license author blame.
Rev Author # Line
3 perry 1 clone - create a child process
2 !!SYNOPSIS
4 PerryLorier 3 __#include <sched.h>__
3 perry 4
4 PerryLorier 5 __int clone(int (*__''fn''__) (void *), void *__''child_stack''__, int__ ''flags''__, void *__''arg''__)__
3 perry 6
4 PerryLorier 7 ___syscall2(int,__ ''clone''__, int,__ ''flags''__, void *,__ ''child_stack''__);__
3 perry 8 !!DESCRIPTION
9
4 PerryLorier 10 __clone__ creates a new process, just like fork(2). __clone__ is a library function layered on top of the underlying __clone__ system call, hereinafter referred to as __sys_clone__. A description of __sys_clone__ is given towards the end of this page.
3 perry 11
4 PerryLorier 12 Unlike fork(2), these calls allow the child process to share parts of its execution context with the calling process, such as the memory space, the table of file descriptors, and the table of signal handlers. (Note that on this manual page, __CLONE_PARENT__ below.)
3 perry 13
4 PerryLorier 14 The main use of __clone__ is to implement threads: multiple threads of control in a program that run concurrently in a shared memory space.
3 perry 15
4 PerryLorier 16 When the child process is created with __clone__, it executes the function application ''fn''(''arg''). (This differs from fork(2), where execution continues in the child from the point of the fork(2) call.) The ''fn'' argument is a pointer to a function that is called by the child process at the beginning of its execution. The ''arg'' argument is passed to the ''fn'' function.
3 perry 17
4 PerryLorier 18 When the ''fn''(''arg'') function application returns, the child process terminates. The integer returned by ''fn'' is the exit code for the child process. The child process may also terminate explicitely by calling
19 exit(2) or after receiving a fatal signal.
3 perry 20
4 PerryLorier 21 The ''child_stack'' argument specifies the location of the stack used by the child process. Since the child and calling process may share memory, it is not possible for the child process to execute in the same stack as the calling process. The calling process must therefore set up memory space for the child stack and pass a pointer to this space to __clone__. Stacks grow downwards on all processors that run Linux (except the HP PA processors), so ''child_stack'' usually points to the topmost address of the memory space set up for the child stack.
3 perry 22
4 PerryLorier 23 The low byte of ''flags'' contains the number of the signal sent to the parent when the child dies. If this signal is specified as anything other than __SIGCHLD__, then the parent process must specify the ____WALL__ or ____WCLONE__ options when waiting for the child with wait(2). If no signal is specified, then the parent process is not signaled when the child terminates.
3 perry 24
4 PerryLorier 25 ''flags'' may also be bitwise-or'ed with one or several of the following constants, in order to specify what is shared between the calling process and the child process:
3 perry 26
4 PerryLorier 27 ;__CLONE_PARENT__: (Linux 2.4 onwards) If __CLONE_PARENT__ is set, then the parent of the new child (as returned by getppid(2)) will be the same as that of the calling process.
3 perry 28
4 PerryLorier 29 ;:If __CLONE_PARENT__ is not set, then (as with fork(2)) the child's parent is the calling process.
3 perry 30
5 PerryLorier 31 ;:Note that it is the parent process, as returned by getppid(2), which is signaled when the child terminates, so that if __CLONE_PARENT__ is set, then the parent of the calling process, rather than the calling process itself, will be signaled.
3 perry 32
5 PerryLorier 33 ;__CLONE_FS__: If __CLONE_FS__ is set, the caller and the child processes share the same file system information. This includes the root of the file system, the current working directory, and the umask. Any call to chroot(2), chdir(2), or umask(2) performed by the callng process or the child process also takes effect in the other process.
3 perry 34
5 PerryLorier 35 ;:If __CLONE_FS__ is not set, the child process works on a copy of the file system information of the calling process at the time of the __clone__ call. Calls to chroot(2), chdir(2), umask(2) performed later by one of the processes do not affect the other process.
3 perry 36
4 PerryLorier 37 ;__CLONE_FILES__: If __CLONE_FILES__ is set, the calling process and the child processes share the same file descriptor table. File descriptors always refer to the same files in the calling process and in the child process. Any file descriptor created by the calling process or by the child process is also valid in the other process. Similarly, if one of the processes closes a file descriptor, or changes its associated flags, the other process is also affected.
3 perry 38
4 PerryLorier 39 ;:If __CLONE_FILES__ is not set, the child process inherits a copy of all file descriptors opened in the calling process at the time of __clone__. Operations on file descriptors performed later by either the calling process or the child process do not affect the other process.
3 perry 40
4 PerryLorier 41 ;__CLONE_SIGHAND__: If __CLONE_SIGHAND__ is set, the calling process and the child processes share the same table of signal handlers. If the calling process or child process calls sigaction(2) to change the behavior associated with a signal, the behavior is changed in the other process as well. However, the calling process and child processes still have distinct signal masks and sets of pending signals. So, one of them may block or unblock some signals using sigprocmask(2) without affecting the other process.
3 perry 42
5 PerryLorier 43 ;:If __CLONE_SIGHAND__ is not set, the child process inherits a copy of the signal handlers of the calling process at the time __clone__ is called. Calls to sigaction(2) performed later by one of the processes have no effect on the other process.
3 perry 44
4 PerryLorier 45 ;__CLONE_PTRACE__: If __CLONE_PTRACE__ is specified, and the calling process is being traced, then trace the child also (see ptrace(2)).
3 perry 46
4 PerryLorier 47 ;__CLONE_VFORK__: If __CLONE_VFORK__ is set, the execution of the calling process is suspended until the child releases its virtual memory resources via a call to execve(2) or _exit(2) (as with vfork(2)).
3 perry 48
4 PerryLorier 49 ;:If __CLONE_VFORK__ is not set then both the calling process and the child are schedulable after the call, and an application should not rely on execution occurring in any particular order.
3 perry 50
4 PerryLorier 51 ;__CLONE_VM__: If __CLONE_VM__ is set, the calling process and the child processes run in the same memory space. In particular, memory writes performed by the calling process or by the child process are also visible in the other process. Moreover, any memory mapping or unmapping performed with mmap(2) or munmap(2) by the child or calling process also affects the other process.
3 perry 52
4 PerryLorier 53 ;:If __CLONE_VM__ is not set, the child process runs in a separate copy of the memory space of the calling process at the time of __clone__. Memory writes or file mappings/unmappings performed by one of the processes do not affect the other, as with fork(2).
3 perry 54
4 PerryLorier 55 ;__CLONE_PID__: If __CLONE_PID__ is set, the child process is created with the same process ID as the calling process.
3 perry 56
4 PerryLorier 57 ;:If __CLONE_PID__ is not set, the child process possesses a unique process ID, distinct from that of the calling process.
3 perry 58
4 PerryLorier 59 ;:This flag can only be specified by the system boot process (PID 0).
3 perry 60
4 PerryLorier 61 ;__CLONE_THREAD__: (Linux 2.4 onwards) If __CLONE_THREAD__ is set, the child is placed in the same thread group as the calling process.
3 perry 62
5 PerryLorier 63 ;:If __CLONE_THREAD__ is not set, then the child is placed in its own (new) thread group, whose ID is the same as the process ID.
3 perry 64
4 PerryLorier 65 ;:(Thread groups are feature added in Linux 2.4 to support the POSIX threads notion of a set of threads sharing a single PID. In Linux 2.4, calls to getpid(2) return the thread group ID of the caller.)
3 perry 66
4 PerryLorier 67 The __sys_clone__ system call corresponds more closely to fork(2) in that execution in the child continues from the point of the call. Thus, __sys_clone__ only requires the ''flags'' and ''child_stack'' arguments, which have the same meaning as for __clone__. (Note that the order of these arguments differs from __clone__.)
3 perry 68
4 PerryLorier 69 Another difference for __sys_clone__ is that the ''child_stack'' argument may be zero, in which case copy-on-write semantics ensure that the child gets separate copies of stack pages when either process modifies the
70 stack. In this case, for correct operation, the __CLONE_VM__ option should not be specified.
3 perry 71 !!RETURN VALUE
72
4 PerryLorier 73 On success, the PID of the child process is returned in the caller's thread of execution. On failure, a -1 will be returned in the caller's context, no child process will be created, and ''errno'' will be set
74 appropriately.
3 perry 75
76 !!ERRORS
77
4 PerryLorier 78 ;[EAGAIN]: Too many processes are already running.
79 ;[ENOMEM]: Cannot allocate sufficient memory to allocate a task structure for the child, or to copy those parts of the caller's context that need to be copied.
80 ;[EINVAL]: Returned by __clone__ when a zero value is specified for ''child_stack''.
81 ;[EPERM]: __CLONE_PID__ was specified by a process with a non-zero PID.
3 perry 82 !!BUGS
83
4 PerryLorier 84 As of version 2.1.97 of the kernel, the __CLONE_PID__ flag should not be used, since other parts of the kernel and most system software still assume that process IDs are unique.
3 perry 85
4 PerryLorier 86 There is no entry for __clone__ in libc version 5. libc 6 (a.k.a. glibc 2) provides __clone__ as described in this manual page.
3 perry 87 !!CONFORMING TO
88
4 PerryLorier 89 The __clone__ and __sys_clone__ calls are Linux-specific and should not be used in programs intended to be portable. For programming threaded applications (multiple threads of control in the same memory space), it
90 is better to use a library implementing the POSIX 1003.1c thread API, such as the LinuxThreads library (included in glibc2 (libc6) ). See
3 perry 91 pthread_create(3thr).
92
4 PerryLorier 93 This manual page corresponds to kernels 2.0.x, 2.1.x, 2.2.x, 2.4.x, and to glibc 2.0.x and 2.1.x.
3 perry 94 !!SEE ALSO
95
4 PerryLorier 96 fork(2), wait(2), pthread_create(3thr)
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.

PHP Warning

lib/blame.php:177: Warning: Invalid argument supplied for foreach() (...repeated 2 times)