From dc844a5dc9789cbe616b38d7221708481019be05 Mon Sep 17 00:00:00 2001 From: Maurice Aiken Date: Tue, 12 Mar 2019 10:54:53 +0800 Subject: [PATCH] fix the ambiguous sentence --- Cgroups/linux-cgroups-1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cgroups/linux-cgroups-1.md b/Cgroups/linux-cgroups-1.md index c6bf86f..f0810f0 100644 --- a/Cgroups/linux-cgroups-1.md +++ b/Cgroups/linux-cgroups-1.md @@ -144,7 +144,7 @@ Let's go step by step through this line. The first `c` letter represents type of crw-rw-rw- 1 root tty 5, 0 Dec 3 22:48 /dev/tty ``` -see the first `c` letter in a permissions list. The second part is `5:0` is minor and major numbers of the device. You can see these numbers in the output of `ls` too. And the last `w` letter forbids tasks to write to the specified device. So let's start the `cgroup_test_script.sh` script: +see the first `c` letter in a permissions list. The second part is `5:0` is major and minor numbers of the device. You can see these numbers in the output of `ls` too. And the last `w` letter forbids tasks to write to the specified device. So let's start the `cgroup_test_script.sh` script: ``` ~$ ./cgroup_test_script.sh @@ -213,7 +213,7 @@ Control group /: │ └─6404 /bin/bash ``` -Now we know a little about `control groups` mechanism, how to use it manually and what's purpose of this mechanism. Time to look inside of the Linux kernel source code and start to dive into implementation of this mechanism. +Now we know a little about `control groups` mechanism, how to use it manually and what's purpose of this mechanism. It's time to look inside of the Linux kernel source code and start to dive into implementation of this mechanism. Early initialization of control groups --------------------------------------------------------------------------------