diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-08-21 09:01:36 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-08-21 09:01:36 +0000 |
commit | 43558894063bd8e7814a08a723085549d277f145 (patch) | |
tree | 9b656daecc356c6f3e22f3df07d90d9362263feb /libpthread/linuxthreads.old/wrapsyscall.c | |
parent | a8267f12cef2af969ae395ab6300e64d146404d2 (diff) |
Fix up an msync() redefinition for linuxthreads + nommu systems,
common case depends on __ARCH_USE_MMU__, falling back on the
include/sys/mman.h:msync() stub otherwise.
Diffstat (limited to 'libpthread/linuxthreads.old/wrapsyscall.c')
-rw-r--r-- | libpthread/linuxthreads.old/wrapsyscall.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpthread/linuxthreads.old/wrapsyscall.c b/libpthread/linuxthreads.old/wrapsyscall.c index c1ddcb8fe..466589ef9 100644 --- a/libpthread/linuxthreads.old/wrapsyscall.c +++ b/libpthread/linuxthreads.old/wrapsyscall.c @@ -96,7 +96,8 @@ CANCELABLE_SYSCALL (off64_t, lseek64, (int fd, off64_t offset, int whence), (fd, offset, whence)) #endif -#ifdef __NR_msync +#if defined(__NR_msync) && defined(__ARCH_USE_MMU__) + /* msync(2). */ CANCELABLE_SYSCALL (int, msync, (void *addr, size_t length, int flags), (addr, length, flags)) |