diff options
-rw-r--r-- | include/asm-mips/mman.h | 6 | ||||
-rw-r--r-- | include/asm-mips64/mman.h | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/include/asm-mips/mman.h b/include/asm-mips/mman.h index f95aec1e6..752013d3a 100644 --- a/include/asm-mips/mman.h +++ b/include/asm-mips/mman.h @@ -46,9 +46,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 0x0001 /* synchronous memory sync */ +#define MS_ASYNC 0x0002 /* sync memory asynchronously */ +#define MS_INVALIDATE 0x0004 /* invalidate mappings & caches */ /* * Flags for mlockall 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 |