-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinux_kernel.html
More file actions
96 lines (79 loc) · 4.56 KB
/
linux_kernel.html
File metadata and controls
96 lines (79 loc) · 4.56 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<title>Understanding the Linux Kernel</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Xiaoying Riley at 3rd Wave Media">
<!-- <link rel="shortcut icon" href="favicon.ico"> -->
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900" rel="stylesheet">
<!-- FontAwesome JS-->
<script defer src="assets/fontawesome/js/all.min.js"></script>
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/devresume.css">
</head>
<body>
<script src="../autoload.js"></script>
<div class="main-wrapper">
<div class="container px-3 px-lg-5">
<article class="resume-wrapper mx-auto theme-bg-light p-5 mb-5 my-5 shadow-lg">
<div class="resume-header">
<div class="row align-items-center">
<div class="resume-title col-12 col-md-6 col-lg-8 col-xl-9">
<h2 class="resume-name mb-0 text-uppercase">Linux Kernel</h2>
<!-- <div class="resume-tagline mb-3 mb-md-0">High Performance Computer Archtechture (CCF-A)</div> -->
<P><a class="resume-link" href="index.html">Back to Homepage</a></P>
</div><!--//resume-title-->
<div class="resume-contact col-12 col-md-6 col-lg-4 col-xl-3">
<ul class="list-unstyled mb-0">
<li class="mb-2"><i class="fas fa-envelope-square fa-fw fa-lg me-2"></i><a class="resume-link" href="mailto:#">lujhcoconut@foxmail.com</a></li>
<li class="mb-0"><i class="fas fa-map-marker-alt fa-fw fa-lg me-2"></i>Xiamen,Ningbo China</li>
</ul>
</div><!--//resume-contact-->
</div><!--//row-->
</div><!--//resume-header-->
<hr>
<div class="resume-intro py-3">
<div class="row align-items-center">
<div class="col text-start">
<p class="mb-0">本页面主要是记录Linux Kernel的学习和拓展过程,与操作系统内容协同更新。 </p>
</div><!--//col-->
</div>
</div><!--//resume-intro-->
<hr>
<div class="resume-body">
<div class="row">
<div class="resume-main col-12 col-lg-8 col-xl-9 pe-0 pe-lg-5">
<section class="work-section py-3">
<h3 class="text-uppercase resume-section-heading mb-4">Content</h3>
<div class="item mb-3">
<div class="item-heading row align-items-center mb-2">
<h4 class="item-title col-12 col-md-6 col-lg-8 mb-2 mb-md-0"><a class="resume-link" href="./to_be_updated.html">系统调用、中断和上下文切换</a></h4>
<div class="item-meta col-12 col-md-6 col-lg-4 text-muted text-start text-md-end">Syscall Interrupt Context-switch</div>
</div>
<div class="item-content">
<p>操作系统的抽象,中断的请求、处理、控制、软中断、任务队列、中断亲和性</P>
</div>
</div>
</section>
<hr>
<div class="resume-footer text-center">
<ul class="resume-social-list list-inline mx-auto mb-0 d-inline-block text-muted">
<li class="list-inline-item mb-lg-0 me-3"><a class="resume-link" href="#"><i class="fab fa-github-square fa-2x me-2" data-fa-transform="down-4"></i><span class="d-none d-lg-inline-block text-muted">github.com/LujhCoconut</span></a></li>
<!-- <li class="list-inline-item mb-lg-0 me-3"><a class="resume-link" href="#"><i class="fab fa-linkedin fa-2x me-2" data-fa-transform="down-4"></i><span class="d-none d-lg-inline-block text-muted">linkedin.com/in/username</span></a></li> -->
<!-- <li class="list-inline-item mb-lg-0 me-lg-3"><a class="resume-link" href="#"><i class="fab fa-twitter-square fa-2x me-2" data-fa-transform="down-4"></i><span class="d-none d-lg-inline-block text-muted">@twittername</span></a></li> -->
</ul>
</div><!--//resume-footer-->
</article>
</div><!--//container-->
<footer class="footer text-center py-4">
<!--/* This template is free as long as you keep the footer attribution link. If you'd like to use the template without the attribution link, you can buy the commercial license via our website: themes.3rdwavemedia.com Thank you for your support. :) */-->
<small class="copyright text-muted">Designed with <span class="sr-only">love</span><i class="fas fa-heart"></i> by <a class="theme-link" href="http://themes.3rdwavemedia.com" target="_blank">Xiaoying Riley</a> for developers</small>
</footer>
</div><!--//main-wrapper-->
</body>
</html>