]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libpthread/thread/thr_msync.c
merge fix for boot-time hang on centos' xen
[FreeBSD/FreeBSD.git] / lib / libpthread / 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 __weak_reference(__msync, msync);
15
16 int
17 __msync(void *addr, size_t len, int flags)
18 {
19         struct pthread *curthread = _get_curthread();
20         int     ret;
21
22         /*
23          * XXX This is quite pointless unless we know how to get the
24          * file descriptor associated with the memory, and lock it for
25          * write. The only real use of this wrapper is to guarantee
26          * a cancellation point, as per the standard. sigh.
27          */
28         _thr_cancel_enter(curthread);
29         ret = __sys_msync(addr, len, flags);
30         _thr_cancel_leave(curthread, 1);
31
32         return ret;
33 }