diff options
-rw-r--r-- | src/crypto/slow-hash.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 46a5b5f30..b4a1c8085 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -304,8 +304,13 @@ void slow_hash_allocate_state(void) hp_state = (uint8_t *) VirtualAlloc(hp_state, MEMORY, MEM_LARGE_PAGES | MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE); #else +#if defined(__APPLE__) + hp_state = mmap(0, MEMORY, PROT_READ | PROT_WRITE, + MAP_PRIVATE | MAP_ANON, 0, 0); +#else hp_state = mmap(0, MEMORY, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB, 0, 0); +#endif if(hp_state == MAP_FAILED) hp_state = NULL; #endif |