Warning: main(/www/www/htdocs/style/globals.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/m/munmap.html on line 1
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/globals.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/m/munmap.html on line 1
Warning: main(/www/www/htdocs/style/header.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/m/munmap.html on line 8
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/header.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/m/munmap.html on line 8
Unmap previously mapped addresses
#include <sys/mman.h>
int munmap( void * addr,
size_t len );
- addr
- The beginning of the range of addresses that you want to unmap.
- len
- The length of the range of addresses, in bytes.
libc
Use the -l c option to
qcc
to link against this library.
This library is usually included automatically.
The munmap() function removes any mappings for pages in the address
range starting at addr and continuing for len bytes,
rounded up to the next multiple of the page size.
Subsequent references to these pages cause a SIGSEGV signal to be set on the process.
If there are no mappings in the specified address range, then munmap() has no effect.
- 0
- Success.
- -1
- Failure; errno is set.
- EINVAL
- The addresses in the specified range are outside the range allowed for the address space of a process.
- ENOMEM
- The memory manager fails to allocate memory to handle a user's
munmap() request. This allocation of memory is necessary for
internal structures to represent the new state of mapped memory.
- ENOSYS
- The function munmap() isn't supported by this implementation.
POSIX 1003.1 MF|SHM|TYM
Safety: | |
Cancellation point |
No |
Interrupt handler |
No |
Signal handler |
Yes |
Thread |
Yes |
Currently, you can't munmap() just a part of an area mapped with
mmap().
mmap(),
mprotect(),
munmap_flags(),
shm_open(),
shm_unlink()
“Initializing allocated memory”
in the Interprocess Communication (IPC) chapter of the
System Architecture guide
Warning: main(/www/www/htdocs/style/footer.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/m/munmap.html on line 166
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/footer.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/m/munmap.html on line 166