libc: Document fork()
This commit is contained in:
parent
34fc6996b0
commit
e7522c21ca
@ -22,7 +22,9 @@ extern "C"
|
|||||||
int execve(const char*, char* const[], char* const[]);
|
int execve(const char*, char* const[], char* const[]);
|
||||||
/* Not implemented. */
|
/* Not implemented. */
|
||||||
int execvp(const char*, char* const[]);
|
int execvp(const char*, char* const[]);
|
||||||
/* Not implemented. */
|
|
||||||
|
/* Creates an identical copy (child) of the current process (parent). Returns 0 to the child, and the child's PID to
|
||||||
|
* the parent. */
|
||||||
pid_t fork(void);
|
pid_t fork(void);
|
||||||
|
|
||||||
/* Terminates the program with the status code status. */
|
/* Terminates the program with the status code status. */
|
||||||
|
Loading…
Reference in New Issue
Block a user