mirror of
https://github.com/0xAX/linux-insides.git
synced 2024-10-31 20:18:56 +00:00
.. | ||
linux-syscall-1.md | ||
linux-syscall-2.md | ||
linux-syscall-3.md | ||
linux-syscall-4.md | ||
linux-syscall-5.md | ||
linux-syscall-6.md | ||
README.md |
System calls
This chapter describes the system call
concept in the linux kernel.
- Introduction to system call concept - this part is introduction to the
system call
concept in the Linux kernel. - How the Linux kernel handles a system call - this part describes how the Linux kernel handles a system call from a userspace application.
- vsyscall and vDSO - third part describes
vsyscall
andvDSO
concepts. - How the Linux kernel runs a program - this part describes startup process of a program.
- Implementation of the open system call - this part describes implementation of the open system call.
- Limits on resources in Linux - this part describes implementation of the getrlimit/setrlimit system calls.