summaryrefslogtreecommitdiffstats
path: root/include/asm-mips64
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-02-04 23:09:08 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-02-04 23:09:08 +0000
commit272c4b57f43f435f34bb7fbf838aafccc7f9aa9f (patch)
treec2c8058e563c66b9387b6d0a7614a0e0bc12606c /include/asm-mips64
parentaec732b94b2b677d98db620bbd8a50f942965b15 (diff)
Fix stupid braino in msync(2) flags definitions.
Diffstat (limited to 'include/asm-mips64')
-rw-r--r--include/asm-mips64/mman.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-mips64/mman.h b/include/asm-mips64/mman.h
index 4cbaec4d0..518811023 100644
--- a/include/asm-mips64/mman.h
+++ b/include/asm-mips64/mman.h
@@ -1,4 +1,4 @@
-/* $Id$
+/* $Id: mman.h,v 1.1 1999/08/19 22:56:34 ralf Exp $
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
@@ -45,9 +45,9 @@
/*
* Flags for msync
*/
-#define MS_SYNC 0 /* synchronous memory sync */
-#define MS_ASYNC 1 /* sync memory asynchronously */
-#define MS_INVALIDATE 2 /* invalidate mappings & caches */
+#define MS_SYNC 0x01 /* synchronous memory sync */
+#define MS_ASYNC 0x02 /* sync memory asynchronously */
+#define MS_INVALIDATE 0x04 /* invalidate mappings & caches */
/*
* Flags for mlockall