]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libkse/thread/thr_msync.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / lib / libkse / thread / thr_msync.c
1 /*
2  * David Leonard <d@openbsd.org>, 1999. Public Domain.
3  *
4  * $OpenBSD: uthread_msync.c,v 1.2 1999/06/09 07:16:17 d Exp $
5  *
6  * $FreeBSD$
7  */
8
9 #include <sys/types.h>
10 #include <sys/mman.h>
11 #include <pthread.h>
12 #include "thr_private.h"
13
14 LT10_COMPAT_PRIVATE(__msync);
15 LT10_COMPAT_DEFAULT(msync);
16
17 __weak_reference(__msync, msync);
18
19 int
20 __msync(void *addr, size_t len, int flags)
21 {
22         struct pthread *curthread = _get_curthread();
23         int     ret;
24
25         /*
26          * XXX This is quite pointless unless we know how to get the
27          * file descriptor associated with the memory, and lock it for
28          * write. The only real use of this wrapper is to guarantee
29          * a cancellation point, as per the standard. sigh.
30          */
31         _thr_cancel_enter(curthread);
32         ret = __sys_msync(addr, len, flags);
33         _thr_cancel_leave(curthread, 1);
34
35         return ret;
36 }