-
Notifications
You must be signed in to change notification settings - Fork 16
/
book-config.js
83 lines (83 loc) · 3.54 KB
/
book-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
const bookConfig = {
chapters: [
{
title: "Index Of The Book",
pages: [
{
title: "Table Of Content",
path: "/myJourneyOfBuildingOS/indexOfBook.md"
}
]
},
{
title: "Introduction to Operating System",
pages: [
{
title: "Deep Dive Into Evolution And Architecture",
path: "/myJourneyOfBuildingOS/Ch-1-Introduction-to-Operating-System/Deep-Dive-Into-Evolution-And-Architecture.md"
},
{
title: "Deep Dive Into System Calls And API Interfaces",
path: "/myJourneyOfBuildingOS/Ch-1-Introduction-to-Operating-System/Deep-Dive-Into-System-Calls-And-API-Interfaces.md"
}
]
},
{
title: "OS Architecture Patterns",
pages: [
{
title: "Introduction to OS Architecture",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Introduction-to-OS-Architecture.md"
},
{
title: "Monolithic Kernel",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Monolithic-Kernel.md"
},
{
title: "Case Study: Traditional Unix Architecture",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/CaseStudies/Traditional-Unix-Architecture.md"
},
{
title: "Microkernels",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Microkernels.md"
},
{
title: "Case Study: Mach Kernel Architecture",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/CaseStudies/Mach-Kernel-Architecture.md"
},
{
title: "Hybrid Kernel Architecture",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Hybrid-Kernel-Arch.md"
},
{
title: "Case Study: Windows NT Architecture",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/CaseStudies/Windows_NT.md"
},
{
title: "Exokernel",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Exokernel.md"
},
{
title: "Unikernels",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Unikernels.md"
},
{
title: "Virtual Machines as an OS Pattern",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Virtual-Machines-as-an-OS-Pattern.md"
},
{
title: "Operating System Layer Architecture",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Layered-Systems.md"
},
{
title: "Real Time Operating Systems",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/RTOS.md"
},
{
title: "Adaptive and Reflective Architectures",
path: "/myJourneyOfBuildingOS/Ch-2-OS-Architecture-Patterns/Adaptive-And-Reflective-Architecture.md"
}
]
}
]
};