linux-insides/SysCall/README.md

9 lines
743 B
Markdown
Raw Normal View History

2015-08-23 14:16:27 +00:00
# System calls
2015-09-27 14:12:06 +00:00
This chapter describes the `system call` concept in the linux kernel.
2015-08-23 14:16:27 +00:00
* [Introduction to system call concept](syscall-1.md) - this part is introduction to the `system call` concept in the Linux kernel.
* [How the Linux kernel handles a system call](syscall-2.md) - this part describes how the Linux kernel handles a system call from an userspace application.
* [vsyscall and vDSO](syscall-3.md) - third part describes `vsyscall` and `vDSO` concepts.
* [How the Linux kernel runs a program](syscall-4.md) - this part describes startup process of a program.
2017-01-29 14:02:07 +00:00
* [Implementation of the open system call](syscall-5.md) - this part describes implementation of the [open](http://man7.org/linux/man-pages/man2/open.2.html) system call.