diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-02-04 23:09:08 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-02-04 23:09:08 +0000 |
commit | 272c4b57f43f435f34bb7fbf838aafccc7f9aa9f (patch) | |
tree | c2c8058e563c66b9387b6d0a7614a0e0bc12606c /include/asm-mips/mman.h | |
parent | aec732b94b2b677d98db620bbd8a50f942965b15 (diff) |
Fix stupid braino in msync(2) flags definitions.
Diffstat (limited to 'include/asm-mips/mman.h')
-rw-r--r-- | include/asm-mips/mman.h | 6 |
1 files changed, 3 insertions, 3 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 |