aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/chroot.c
blob: c5b6f2f7772417722a973afb5bfd647d66ce90b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_chroot(const char *path) {
 *	int rc = -1;
 */
	pseudo_debug(2, "chroot: %s\n", path);
	if (!pseudo_client_op(OP_CHROOT, 0, -1, -1, path, 0)) {
		pseudo_debug(1, "chroot failed: %s\n", strerror(errno));
		rc = -1;
	} else {
		rc = 0;
	}

/*	return rc;
 * }
 */