about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <seebastien.chev@gmail.com>2023-10-27 09:57:34 +0200
committerptitSeb <seebastien.chev@gmail.com>2023-10-27 09:57:34 +0200
commitf8d65a831e6f92314513ab2603e74627bbc1711f (patch)
tree9ab42aeb8f8da14cd9aca9ad4cf60d7aefe90abf /src/include
parenta1ac21af75b0fae21981830e660cc31527f9f0f0 (diff)
downloadbox64-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.h1
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);