binaryninja/personal/scc-docs/munmap.txt

14 lines
331 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
munmap
======
:title: Shellcode Compiler Runtime
---------------------------------------------
void* munmap(void* addr, size_t len);
---------------------------------------------
Unmaps a region of virtual address space. The region unmapped starts at `addr` and is `len` bytes in length.
See also
--------
link:mmap.html[mmap]