Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax
In directory sc8-pr-cvs1:/tmp/cvs-serv15601
Modified Files:
mman.h
Log Message:
2.5.7 needs a PROT_SEM definition
Index: mman.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mman.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mman.h 20 May 2002 00:33:39 -0000 1.3
+++ mman.h 7 Dec 2002 00:16:49 -0000 1.4
@@ -4,6 +4,7 @@
#define PROT_READ 0x1 /* page can be read */
#define PROT_WRITE 0x2 /* page can be written */
#define PROT_EXEC 0x4 /* page can be executed */
+#define PROT_SEM 0x4 /* page may be used for atomic ops */
#define PROT_NONE 0x0 /* page can not be accessed */
#define MAP_SHARED 0x01 /* Share changes */
|