mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-09 00:39:32 +03:00
Compare commits
3 commits
79092e1724
...
99f886bdb1
Author | SHA1 | Date | |
---|---|---|---|
![]() |
99f886bdb1 | ||
![]() |
951538d469 | ||
![]() |
fe47ec625d |
2 changed files with 5 additions and 2 deletions
|
@ -425,14 +425,14 @@ static mi_decl_noinline void mi_recurse_exit_prim(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool mi_recurse_enter(void) {
|
static bool mi_recurse_enter(void) {
|
||||||
#if defined(__APPLE__) || defined(MI_TLS_RECURSE_GUARD)
|
#if defined(__APPLE__) || defined(__ANDROID__) || defined(MI_TLS_RECURSE_GUARD)
|
||||||
if (_mi_preloading()) return false;
|
if (_mi_preloading()) return false;
|
||||||
#endif
|
#endif
|
||||||
return mi_recurse_enter_prim();
|
return mi_recurse_enter_prim();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mi_recurse_exit(void) {
|
static void mi_recurse_exit(void) {
|
||||||
#if defined(__APPLE__) || defined(MI_TLS_RECURSE_GUARD)
|
#if defined(__APPLE__) || defined(__ANDROID__) || defined(MI_TLS_RECURSE_GUARD)
|
||||||
if (_mi_preloading()) return;
|
if (_mi_preloading()) return;
|
||||||
#endif
|
#endif
|
||||||
mi_recurse_exit_prim();
|
mi_recurse_exit_prim();
|
||||||
|
|
|
@ -32,6 +32,9 @@ terms of the MIT license. A copy of the license can be found in the file
|
||||||
#if defined(__linux__)
|
#if defined(__linux__)
|
||||||
#include <features.h>
|
#include <features.h>
|
||||||
#include <sys/prctl.h> // THP disable, PR_SET_VMA
|
#include <sys/prctl.h> // THP disable, PR_SET_VMA
|
||||||
|
#if !defined(PR_SET_VMA)
|
||||||
|
#include <linux/prctl.h>
|
||||||
|
#endif
|
||||||
#if defined(__GLIBC__)
|
#if defined(__GLIBC__)
|
||||||
#include <linux/mman.h> // linux mmap flags
|
#include <linux/mman.h> // linux mmap flags
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Reference in a new issue