mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-01 16:15:27 +02:00
14 lines
364 B
Diff
14 lines
364 B
Diff
--- third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp
|
|
+++ third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp
|
|
@@ -41,6 +41,11 @@
|
|
#include <errno.h>
|
|
#include <sys/mman.h>
|
|
|
|
+#if OS(LINUX) && defined(MADV_FREE)
|
|
+// Added in Linux 4.5, but it breaks the sandbox.
|
|
+#undef MADV_FREE
|
|
+#endif
|
|
+
|
|
#ifndef MADV_FREE
|
|
#define MADV_FREE MADV_DONTNEED
|
|
#endif
|