Expand description
Operating system calls that work on OSX and Linux
Functions§
- sys_
fork - Create a new process by copying the memory-mappings in the current process into a new address space and get a separate scheduling-context in the OS.
- sys_
mmap - Allocates physical memory for a file, device, or anonymous-file (ie, a file that is only stored in-memory; just a memory allocation for the running process).
- sys_
munmap - Unmap program memory and memory-mapped devices/files
- sys_
pipe - Create a pipe
- sys_
wait - Wait for any of the caller’s child-process’s scheduling-statuses to change (not including going from idle to runnable, more signal related statuses; see manpage wait(2))