Home
last modified time | relevance | path

Searched refs:munmap (Results 1 – 8 of 8) sorted by relevance

/DragonOS/docs/kernel/memory_management/
H A Dintro.md18 - **系统调用层** - 提供对用户空间的内存管理系统调用,包括mmap、munmap、mprotect、mremap等
H A Dallocate-memory.md29 …数,为用户程序分配内存。这些函数会自动将用户程序的内存映射到用户地址空间中,并且会自动创建VMA结构体。您可以使用`AddressSpace`的`munmap()`函数,将用户程序的内存从用户地址…
/DragonOS/user/apps/test_filemap/
H A Dmain.c50 if (munmap(map, 11) == -1) in main()
/DragonOS/kernel/src/mm/
H A Dsyscall.rs419 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() method
467 .munmap(start_frame, page_count) in munmap()
H A Ducontext.rs544 self.munmap(start_page, page_count)?; in mremap()
575 pub fn munmap( in munmap() method
777 self.munmap( in set_brk()
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.8.md366 - **系统调用层** - 提供对用户空间的内存管理系统调用,包括mmap、munmap、mprotect、mremap等
407 - **系统调用层** - 提供对用户空间的内存管理系统调用,包括mmap、munmap、mprotect、mremap等
/DragonOS/kernel/src/libs/
H A Delf.rs266 user_vm_guard.munmap( in load_elf_segment()
/DragonOS/kernel/src/syscall/
H A Dmod.rs617 Self::munmap(VirtAddr::new(addr), len) in handle()