summaryrefslogtreecommitdiff
path: root/net-p2p/bitcoind/files/0.18.0-daemon-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/bitcoind/files/0.18.0-daemon-fix.patch')
-rw-r--r--net-p2p/bitcoind/files/0.18.0-daemon-fix.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/net-p2p/bitcoind/files/0.18.0-daemon-fix.patch b/net-p2p/bitcoind/files/0.18.0-daemon-fix.patch
deleted file mode 100644
index 8a6737f88471..000000000000
--- a/net-p2p/bitcoind/files/0.18.0-daemon-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/src/support/lockedpool.cpp
-+++ b/src/support/lockedpool.cpp
-@@ -250,9 +250,6 @@ void *PosixLockedPageAllocator::AllocateLocked(size_t len, bool *lockingSuccess)
- addr = mmap(nullptr, len, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
- if (addr) {
- *lockingSuccess = mlock(addr, len) == 0;
--#ifdef MADV_DONTFORK
-- madvise(addr, len, MADV_DONTFORK);
--#endif
- #ifdef MADV_DONTDUMP
- madvise(addr, len, MADV_DONTDUMP);
- #endif