Blame extension/fork.3am

Packit Service f629e6
.TH FORK 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules"
Packit Service f629e6
.SH NAME
Packit Service f629e6
fork, wait, waitpid \- basic process management
Packit Service f629e6
.SH SYNOPSIS
Packit Service f629e6
.ft CW
Packit Service f629e6
@load "fork"
Packit Service f629e6
.sp
Packit Service f629e6
pid = fork()
Packit Service f629e6
.sp
Packit Service f629e6
ret = waitpid(pid)
Packit Service f629e6
.sp
Packit Service f629e6
ret = wait();
Packit Service f629e6
.ft R
Packit Service f629e6
.SH DESCRIPTION
Packit Service f629e6
The
Packit Service f629e6
.I fork
Packit Service f629e6
extension adds three functions, as follows.
Packit Service f629e6
.TP
Packit Service f629e6
.B fork()
Packit Service f629e6
This function creates a new process. The return value is the zero
Packit Service f629e6
in the child and the process-id number of the child in the parent,
Packit Service f629e6
or \-1 upon error. In the latter case,
Packit Service f629e6
.B ERRNO
Packit Service f629e6
indicates the problem.
Packit Service f629e6
In the child, \fBPROCINFO["pid"]\fP and \fBPROCINFO["ppid"]\fP
Packit Service f629e6
are updated to reflect the correct values.
Packit Service f629e6
.TP
Packit Service f629e6
.B waitpid()
Packit Service f629e6
This function takes a numeric argument, which is the process-id to
Packit Service f629e6
wait for. The return value is that of the
Packit Service f629e6
.IR waitpid (2)
Packit Service f629e6
system call.
Packit Service f629e6
.TP
Packit Service f629e6
.B wait()
Packit Service f629e6
This function waits for the first child to die.
Packit Service f629e6
The return value is that of the
Packit Service f629e6
.IR wait (2)
Packit Service f629e6
system call.
Packit Service f629e6
.\" .SH NOTES
Packit Service f629e6
.SH BUGS
Packit Service f629e6
There is no corresponding
Packit Service f629e6
.B exec()
Packit Service f629e6
function.
Packit Service f629e6
.PP
Packit Service f629e6
The interfaces could be enhanced to provide more facilities,
Packit Service f629e6
including pulling out the various bits of the return status.
Packit Service f629e6
.SH EXAMPLE
Packit Service f629e6
.ft CW
Packit Service f629e6
.nf
Packit Service f629e6
@load "fork"
Packit Service f629e6
\&...
Packit Service f629e6
if ((pid = fork()) == 0)
Packit Service f629e6
    print "hello from the child"
Packit Service f629e6
else
Packit Service f629e6
    print "hello from the parent"
Packit Service f629e6
.fi
Packit Service f629e6
.ft R
Packit Service f629e6
.SH "SEE ALSO"
Packit Service f629e6
.IR "GAWK: Effective AWK Programming" ,
Packit Service f629e6
.IR filefuncs (3am),
Packit Service f629e6
.IR fnmatch (3am),
Packit Service f629e6
.IR inplace (3am),
Packit Service f629e6
.IR ordchr (3am),
Packit Service f629e6
.IR readdir (3am),
Packit Service f629e6
.IR readfile (3am),
Packit Service f629e6
.IR revoutput (3am),
Packit Service f629e6
.IR rwarray (3am),
Packit Service f629e6
.IR time (3am).
Packit Service f629e6
.PP
Packit Service f629e6
.IR fork (2),
Packit Service f629e6
.IR wait (2),
Packit Service f629e6
.IR waitpid (2).
Packit Service f629e6
.SH AUTHOR
Packit Service f629e6
Arnold Robbins,
Packit Service f629e6
.BR arnold@skeeve.com .
Packit Service f629e6
.SH COPYING PERMISSIONS
Packit Service f629e6
Copyright \(co 2012, 2013,
Packit Service f629e6
Free Software Foundation, Inc.
Packit Service f629e6
.PP
Packit Service f629e6
Permission is granted to make and distribute verbatim copies of
Packit Service f629e6
this manual page provided the copyright notice and this permission
Packit Service f629e6
notice are preserved on all copies.
Packit Service f629e6
.ig
Packit Service f629e6
Permission is granted to process this file through troff and print the
Packit Service f629e6
results, provided the printed document carries copying permission
Packit Service f629e6
notice identical to this one except for the removal of this paragraph
Packit Service f629e6
(this paragraph not being relevant to the printed manual page).
Packit Service f629e6
..
Packit Service f629e6
.PP
Packit Service f629e6
Permission is granted to copy and distribute modified versions of this
Packit Service f629e6
manual page under the conditions for verbatim copying, provided that
Packit Service f629e6
the entire resulting derived work is distributed under the terms of a
Packit Service f629e6
permission notice identical to this one.
Packit Service f629e6
.PP
Packit Service f629e6
Permission is granted to copy and distribute translations of this
Packit Service f629e6
manual page into another language, under the above conditions for
Packit Service f629e6
modified versions, except that this permission notice may be stated in
Packit Service f629e6
a translation approved by the Foundation.
Packit Service f629e6
.\" vim: set filetype=nroff :