# System calls

This chapter describes the `system call` concept in the Linux kernel.

* [Introduction to system call concept](https://0xax.gitbook.io/linux-insides/summary/syscall/linux-syscall-1) - this part is introduction to the `system call` concept in the Linux kernel.
* [How the Linux kernel handles a system call](https://0xax.gitbook.io/linux-insides/summary/syscall/linux-syscall-2) - this part describes how the Linux kernel handles a system call from a userspace application.
* [vsyscall and vDSO](https://0xax.gitbook.io/linux-insides/summary/syscall/linux-syscall-3) - third part describes `vsyscall` and `vDSO` concepts.
* [How the Linux kernel runs a program](https://0xax.gitbook.io/linux-insides/summary/syscall/linux-syscall-4) - this part describes startup process of a program.
* [Implementation of the open system call](https://0xax.gitbook.io/linux-insides/summary/syscall/linux-syscall-5) - this part describes implementation of the [open](http://man7.org/linux/man-pages/man2/open.2.html) system call.
* [Limits on resources in Linux](https://0xax.gitbook.io/linux-insides/summary/syscall/linux-syscall-6) - this part describes implementation of the [getrlimit/setrlimit](https://linux.die.net/man/2/getrlimit) system calls.
