From 251d184a87bc982dbeff7a9cef38409f1f1c74e5 Mon Sep 17 00:00:00 2001 From: 0xAX <0xAX@users.noreply.github.com> Date: Sun, 30 Aug 2015 20:10:27 +0600 Subject: [PATCH] Update syscall-2.md --- SysCall/syscall-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SysCall/syscall-2.md b/SysCall/syscall-2.md index a2c6ef1..bafb5c8 100644 --- a/SysCall/syscall-2.md +++ b/SysCall/syscall-2.md @@ -1,7 +1,7 @@ System calls in the Linux kernel. Part 2. ================================================================================ -How the Linux kernel handles a system call +How does the Linux kernel handles a system call -------------------------------------------------------------------------------- The previous [part](http://0xax.gitbooks.io/linux-insides/content/SysCall/syscall-1.html) was the first part of the chapter that describes [system call](https://en.wikipedia.org/wiki/System_call) concept in the Linux kernel. We have learned what is it a `system call` in the Linux kernel and in a operating system kernel in general, looked on this concept from the user space and even saw partly implementation of the [write](http://man7.org/linux/man-pages/man2/write.2.html) system call. In this part we will continue dive into this theme and as we usually did it in other chapters of this book - after some theory we will start to sink lower and lower, and go directly to the Linux kernel code.