diff options
| author | ptitSeb <seebastien.chev@gmail.com> | 2023-10-27 09:57:34 +0200 |
|---|---|---|
| committer | ptitSeb <seebastien.chev@gmail.com> | 2023-10-27 09:57:34 +0200 |
| commit | f8d65a831e6f92314513ab2603e74627bbc1711f (patch) | |
| tree | 9ab42aeb8f8da14cd9aca9ad4cf60d7aefe90abf /src/include | |
| parent | a1ac21af75b0fae21981830e660cc31527f9f0f0 (diff) | |
| download | box64-f8d65a831e6f92314513ab2603e74627bbc1711f.tar.gz box64-f8d65a831e6f92314513ab2603e74627bbc1711f.zip | |
Another fix to wrapped mmap (should fix #1031, hopefully not creating more regression)
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/custommem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/custommem.h b/src/include/custommem.h index ac715b52..31b3f30e 100644 --- a/src/include/custommem.h +++ b/src/include/custommem.h @@ -96,6 +96,7 @@ void* find32bitBlock(size_t size); void* find31bitBlockNearHint(void* hint, size_t size); void* find47bitBlock(size_t size); void* find47bitBlockNearHint(void* hint, size_t size); +int isBlockFree(void* hint, size_t size); // unlock mutex that are locked by current thread (for signal handling). Return a mask of unlock mutex int unlockCustommemMutex(void); |