1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Add MAP_PRIVATE and MAP_SHARED to sortix/mman.h.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-03-06 12:31:30 +01:00
parent 25b70f0e1c
commit e4bd7cad82

View file

@ -44,4 +44,7 @@
#define PROT_FORK (1<<6) #define PROT_FORK (1<<6)
#define MAP_SHARED (1<<0)
#define MAP_PRIVATE (1<<1)
#endif #endif