Files
linux-insides-zh/SysCall/README.md
2018-03-14 17:33:59 -04:00

11 lines
659 B
Markdown

# 系统调用
本章描述 Linux 内核中的系统调用概念。
* [系统调用概念简介](linux-syscall-1.md) - 介绍 Linux 内核中的系统调用概念
* [Linux 内核如何处理系统调用](linux-syscall-2.md) - 介绍 Linux 内核如何处理来自于用户空间应用的系统调用。
* [vsyscall and vDSO](linux-syscall-3.md) - 介绍 `vsyscall``vDSO` 概念。
* [Linux 内核如何运行程序](linux-syscall-4.md) - 介绍一个程序的启动过程。
* [open 系统调用的实现](linux-syscall-5.md) - 介绍 open 系统调用的实现。
* [Linux 资源限制](linux-syscall-6.md) - 介绍 `getrlimit/setrlimit` 的实现。