binaryninja/commercial/scc-docs/munmap.txt

14 lines
331 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00: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]