Merge pull request #4301 from ntherning/fix-Mono.Posix-API-breakage
[mono.git] / support / sys-mman.c
index ce804ef6fb5761f85393591ba8562ca9df08df57..1dd61bc372b5343cce83bf8a677c190aca969a05 100644 (file)
@@ -9,7 +9,9 @@
 
 #include <config.h>
 
+#ifndef __OpenBSD__
 #define _XOPEN_SOURCE 600
+#endif
 
 #ifdef PLATFORM_MACOSX
 /* For mincore () */
 #define __BSD_VISIBLE 1
 #endif
 
+#ifdef __NetBSD__
+/* For mincore () */
+#define _NETBSD_SOURCE
+#endif
+
 #include <sys/types.h>
 #include <sys/mman.h>
 #include <errno.h>
@@ -107,8 +114,15 @@ Mono_Posix_Syscall_mremap (void *old_address, mph_size_t old_size,
        if (Mono_Posix_FromMremapFlags (flags, &_flags) == -1)
                return MAP_FAILED;
 
+#if defined(linux)
        return mremap (old_address, (size_t) old_size, (size_t) new_size,
                        (unsigned long) _flags);
+#elif defined(__NetBSD__)
+       return mremap (old_address, (size_t) old_size, old_address,
+                       (size_t) new_size, (unsigned long) _flags);
+#else
+#error Port me
+#endif
 }
 #endif /* def HAVE_MREMAP */