aboutsummaryrefslogtreecommitdiffstats
path: root/guts/fork.c
blob: a49694f2768f25d5ee46ede606368893433b65fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 
 * static int
 * wrap_fork(void) {
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */