Searched refs:munmap (Results 1 – 8 of 8) sorted by relevance
18 - **系统调用层** - 提供对用户空间的内存管理系统调用,包括mmap、munmap、mprotect、mremap等
29 …数,为用户程序分配内存。这些函数会自动将用户程序的内存映射到用户地址空间中,并且会自动创建VMA结构体。您可以使用`AddressSpace`的`munmap()`函数,将用户程序的内存从用户地址…
50 if (munmap(map, 11) == -1) in main()
419 Self::munmap(old_vaddr + new_len, old_len - new_len)?; in mremap()434 Self::munmap(old_vaddr, old_len)?; in mremap()450 pub fn munmap(start_vaddr: VirtAddr, len: usize) -> Result<usize, SystemError> { in munmap() method467 .munmap(start_frame, page_count) in munmap()
544 self.munmap(start_page, page_count)?; in mremap()575 pub fn munmap( in munmap() method777 self.munmap( in set_brk()
366 - **系统调用层** - 提供对用户空间的内存管理系统调用,包括mmap、munmap、mprotect、mremap等407 - **系统调用层** - 提供对用户空间的内存管理系统调用,包括mmap、munmap、mprotect、mremap等
266 user_vm_guard.munmap( in load_elf_segment()
617 Self::munmap(VirtAddr::new(addr), len) in handle()