aboutsummaryrefslogtreecommitdiffstats
path: root/guts/fork.c
blob: 4a91f7ba6ccd23cd723b9867f5473048b0d5a4e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 
 * 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;
 * }
 */