aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/stat.c
blob: 8a0742c06fd433073ff5f2fe5c2e1a5e20c526b8 (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
25
26
27
28
29
30
31
/*
 * Copyright (c) 2011 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * int stat(const char *path, struct stat *buf)
 *	int rc = -1;
 */

	pseudo_msg_t *msg;
	int save_errno;

	rc = real_stat(path, buf);
	if (rc == -1) {
		return rc;
	}
	save_errno = errno;

	/* query database
	 * note that symlink canonicalizing is now automatic, so we
	 * don't need to check for a symlink on this end
	 */
	msg = pseudo_client_op(OP_STAT, 0, -1, AT_FDCWD, path, buf);
	if (msg && msg->result == RESULT_SUCCEED) {
		pseudo_stat_msg(buf, msg);
	}

	errno = save_errno;

/*	return rc;
 * }
 */