diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-09-08 20:45:12 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-09-08 20:45:12 +0200 |
| commit | 464fdc3ebe5816c281b0cf9e1960cb33386e29e9 (patch) | |
| tree | 9edfde55580db30db5abfcbf92fb4fee81f7b940 /src/include | |
| parent | 6b9ed18286d9296bf91a98619e84ae1ace6a9ba8 (diff) | |
| download | box64-464fdc3ebe5816c281b0cf9e1960cb33386e29e9.tar.gz box64-464fdc3ebe5816c281b0cf9e1960cb33386e29e9.zip | |
[BOX32] Various small improvments on box32, mostly on memory tracking
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/custommem.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/custommem.h b/src/include/custommem.h index 28503828..4209f827 100644 --- a/src/include/custommem.h +++ b/src/include/custommem.h @@ -107,6 +107,8 @@ uintptr_t getJumpAddress64(uintptr_t addr); void updateProtection(uintptr_t addr, size_t size, uint32_t prot); void setProtection(uintptr_t addr, size_t size, uint32_t prot); void setProtection_mmap(uintptr_t addr, size_t size, uint32_t prot); +void setProtection_box(uintptr_t addr, size_t size, uint32_t prot); +void setProtection_stack(uintptr_t addr, size_t size, uint32_t prot); void setProtection_elf(uintptr_t addr, size_t size, uint32_t prot); void freeProtection(uintptr_t addr, size_t size); void refreshProtection(uintptr_t addr); |