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
1 changed files with 3 additions and 0 deletions

View File

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