diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-12-15 14:36:35 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-12-15 14:36:35 +0200 |
commit | 29735c8f8fda032833924285c2da7ea9b15a77c7 (patch) | |
tree | 6be858f3fd0b29be74c87ba37e3512f3a4808acf /src/crypto/slow-hash.c | |
parent | Merge pull request #1458 (diff) | |
parent | Preliminary support for DragonFly BSD (diff) | |
download | monero-29735c8f8fda032833924285c2da7ea9b15a77c7.tar.xz |
Merge pull request #1459
b00da61e Preliminary support for DragonFly BSD (Antonio Huete Jimenez)
Diffstat (limited to 'src/crypto/slow-hash.c')
-rw-r--r-- | src/crypto/slow-hash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 2ac303a36..66d9ca5d9 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -442,7 +442,8 @@ 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__) || defined(__FreeBSD__) || defined(__OpenBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || \ + defined(__DragonFly__) hp_state = mmap(0, MEMORY, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, 0, 0); #else |