aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/msync.c
blob: fbc5e2613ad99f5e213e45062d214ceb64b7be44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2013 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * int msync(void *addr, size_t length, int flags)
 *	int rc = -1;
 */

	/* note: wrapper will never call this if PSEUDO_FORCE_ASYNC
	 * is defined.
	 */
	rc = real_msync(addr, length, flags);

/*	return rc;
 * }
 */