From e4bd7cad827b543767ba3da965872bf7bd9f25cf Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Wed, 6 Mar 2013 12:31:30 +0100 Subject: [PATCH] Add MAP_PRIVATE and MAP_SHARED to sortix/mman.h. --- sortix/include/sortix/mman.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sortix/include/sortix/mman.h b/sortix/include/sortix/mman.h index 06154b9a..412b0058 100644 --- a/sortix/include/sortix/mman.h +++ b/sortix/include/sortix/mman.h @@ -44,4 +44,7 @@ #define PROT_FORK (1<<6) +#define MAP_SHARED (1<<0) +#define MAP_PRIVATE (1<<1) + #endif