aboutsummaryrefslogtreecommitdiffstats
path: root/guts/fork.c
blob: f4eb7f6a1e55631eb2bd76efdaa1dcd91fc47b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_fork(void) {
 *	int rc = -1;
 */

	rc = real_fork();
	if (rc == 0)
		pseudo_client_reset();

/*	return rc;
 * }
 */