Skip to content
Snippets Groups Projects
Commit ee18f3b0 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added some more AutoDoc mk II markup.

Rev: src/signal_handler.c:1.192
parent ff382632
Branches
Tags
No related merge requests found
......@@ -25,7 +25,7 @@
#include "main.h"
#include <signal.h>
RCSID("$Id: signal_handler.c,v 1.191 2001/01/31 19:30:24 grubba Exp $");
RCSID("$Id: signal_handler.c,v 1.192 2001/02/08 23:48:21 grubba Exp $");
#ifdef HAVE_PASSWD_H
# include <passwd.h>
......@@ -3069,6 +3069,24 @@ void f_create_process(INT32 args)
}
#ifdef HAVE_FORK
/*! @decl int fork()
*!
*! Fork the process in two.
*!
*! Fork splits the process in two, and for the parent it returns the
*! pid of the child. Refer to your Unix manual for further details.
*!
*! @note
*! This function can cause endless bugs if used without proper care.
*!
*! This function is disabled when using threads.
*!
*! The most common use for fork is to start sub programs, which is
*! better done with @[Process.create_process()].
*!
*! @seealso
*! @[Process.create_process()]
*/
void Pike_f_fork(INT32 args)
{
struct object *o;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment