aboutsummaryrefslogtreecommitdiffstats
path: root/guts/close.c
blob: 09c73e6075b95b3dad12cfb2a198caa419197492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_close(int fd) {
 *	int rc = -1;
 */
	/* this cleans up an internal table, and shouldn't even
	 * make it to the server.
	 */
	pseudo_client_op(OP_CLOSE, 0, fd, -1, 0, 0);
	rc = real_close(fd);

/*	return rc;
 * }
 */