aboutsummaryrefslogtreecommitdiffstats
path: root/guts/fork.c
blob: fa23be1f4e9c8e4c6bd1cd8ab800681243d8b5b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_fork(void) {
 *	int rc = -1;
 */
	if (real_fork) {
		rc = real_fork();
		/* special case: we may want to enable or disable
		 * pseudo in the child process
		 */
		if (rc == 0) {
			pseudo_setupenv();
			pseudo_client_reset();
		}
	} else {
		/* rc was initialized to the "failure" value */
		pseudo_enosys("fork");
	}
/*	return rc;
 * }
 */