Date: Sat, 29 Jul 2000 04:53:36 -0700 (PDT) From: Peter Wemm <peter@FreeBSD.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include unistd.h Message-ID: <200007291153.EAA40505@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
peter 2000/07/29 04:53:36 PDT Modified files: include unistd.h Log: Add a prototype for rfork_thread(). pid_t rfork_thread(int forkflags, void *stack, int (*func)(void *arg), void *arg); A new process is created, presumably using RFMEM shared address space. The child process switches to the supplied stack, which is set up with a function call frame. The function is called with the supplied arguement. If the function returns, the return value will be used with _exit(2). Revision Changes Path 1.37 +2 -1 src/include/unistd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200007291153.EAA40505>