Home | History | Annotate | Download | only in lib

Lines Matching full:background

37  *			  background
48 * int background(prefix);
58 * The background function will do a fork of the current process.
61 * like executing a cmd in the background using "&" from the shell.
124 * putting it in the background.
130 int background(char *prefix)
136 "%s: In %s background(), fork() failed, errno:%d %s\n",
149 } /* end of background */
233 * The following is a unit test main for the background and forker
263 ret = background(argv[0]);
264 printf("After background() ret:%d, pid = %d\n", ret, getpid());