summaryrefslogtreecommitdiff
path: root/include/remote/win/sys/mman.h
diff options
context:
space:
mode:
authorAdeel Mujahid <3840695+am11@users.noreply.github.com>2022-06-29 02:43:45 +0300
committerGitHub <noreply@github.com>2022-06-28 19:43:45 -0400
commitcfcf3d193a4425f58ed9556ec54b6d7ab0557330 (patch)
tree04da0e1e3fe3dc3fbdb55f53b0fabbf01e033d82 /include/remote/win/sys/mman.h
parent9c7245b97d515c9bdb9f8b63dc1d4e35e2fafa56 (diff)
downloadlibunwind-cfcf3d193a4425f58ed9556ec54b6d7ab0557330.tar.gz
Add remote unwinding support for macOS (#365)
* Add remote unwinding support for macOS * Fix broken Win build by bumping minimum language requirement to C11 * Update license headers * Rename remote_unwind to remote * Revert Gparser.c
Diffstat (limited to 'include/remote/win/sys/mman.h')
-rw-r--r--include/remote/win/sys/mman.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/remote/win/sys/mman.h b/include/remote/win/sys/mman.h
new file mode 100644
index 00000000..0a3f6f93
--- /dev/null
+++ b/include/remote/win/sys/mman.h
@@ -0,0 +1,24 @@
+// This is an incomplete & imprecice implementation of the Posix
+// standard file by the same name
+
+
+// Since this is only intended for VC++ compilers
+// use #pragma once instead of guard macros
+#pragma once
+
+#ifdef _MSC_VER // Only for cross compilation to windows
+
+#include <sys/types.h>
+
+#define MAP_FAILED (void *) -1
+#define MAP_ANONYMOUS 1
+#define MAP_ANON MAP_ANONYMOUS
+#define MAP_PRIVATE 2
+#define PROT_READ 4
+#define PROT_WRITE 8
+#define PROT_EXEC 16
+
+void* mmap(void *, size_t, int, int, int, size_t);
+int munmap(void *, size_t);
+
+#endif // _MSC_VER