Posix::fork(3) Fork a new process.

SYNOPSIS

Int fork( )

DESCRIPTION

Fork a new process, returning the process ID of the new process in the parent process, or zero in the child process. An Posix.OutOfMemory(3kaya) or Posix.OverResourceLimit(3kaya) if the process cannot be created.

AUTHORS

Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/

LICENSE

The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.

RELATED

Posix.reap(3kaya)

Posix.wait(3kaya)

Posix.waitPid(3kaya)