Syscall sbrk User Mode #include <unistd.h> extern void *sbrk(intptr_t increment); Change process heap memory size. Kernel Mode Implemented in sys_process.c as sys_sbrk(). See also Overview: syscalls Process Control Syscalls: fork | execv | exit | kill | ms_sleep | wait | chdir | sbrk