xv6
Hacker_Albert
If I am not for myself, who will be for me?
If I am only for myself, what am I?
If not now, when?
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
xv6 bootstrap启动分析
sondognsod原创 2019-03-06 19:57:33 · 547 阅读 · 0 评论 -
xv6 FCFS Scheduling
学习xv6 FCFS(First Come First Serve) Scheduling1.FCFS Scheduling First come first serve (FCFS) scheduling algorithm simply schedules the jobs according to their arrival time. The job which comes fi...原创 2019-04-18 08:29:04 · 793 阅读 · 0 评论 -
x86 real mode/protected mode interrupts
学习xv6 interrupts原创 2019-04-15 08:25:15 · 823 阅读 · 0 评论 -
xv6 Context switch
学习xv6 Scheduler参考资料:http://pages.cs.wisc.edu/~gerald/cs537/Fall17/projects/p2b.html原创 2019-04-10 08:33:31 · 828 阅读 · 0 评论 -
xv6 multilevel queue scheduling
学习multilevel queue scheduling1.multilevel queue scheduling It may happen that processes in the ready queue can be divided into different classes where each class has its own scheduling needs. For...原创 2019-04-20 18:10:57 · 715 阅读 · 0 评论 -
xv6 Priority scheduling
学习 Priority scheduling algoritm1.Priority scheduling algoritm In Priority scheduling, there is a priority number assigned to each process. In some systems, the lower the number, the higher the pr...原创 2019-04-20 17:41:54 · 868 阅读 · 0 评论 -
xv6 Traps, interrupts, and drivers
学习Traps, interrupts, and drivers1.interrupt, trap, exception1.1.InterruptsExternal (hardware generated) interrupts.External interrupts are received through pins on the processor.Software-ge...原创 2019-03-28 21:48:11 · 675 阅读 · 0 评论 -
xv6 lab3实验
学习lab3 实验https://pdos.csail.mit.edu/6.828/2018/labs/lab3/Exercises:diff --git a/kern/syscall.c b/kern/syscall.cindex 414d489..d1c3e5e 100644--- a/kern/syscall.c+++ b/kern/syscall.c@@ -69,10 +...原创 2019-04-07 15:30:35 · 1771 阅读 · 0 评论 -
xv6 syscall lab
做syscall 实验实验1:System call tracing Your first task is to modify the xv6 kernel to print out a line for each system call invocation. It is enough to print the name of the system call and the retur...原创 2019-04-06 13:25:25 · 2316 阅读 · 0 评论 -
xv6 init process
学习xv6 init 进程。原创 2019-03-31 21:36:58 · 925 阅读 · 0 评论 -
xv6 lab2 内存管理
学习xv6 lab2 内存管理Setup of paging 当kernel开启分页机制之后,kernel 4M的物理地址就会映射到虚拟地址,即0x00000000 to 0x003fffff映射到0xf0000000 to 0xf03fffff 。那么如果访问0xf0400000会出现什么情况? 42 .globl entry 43 entry: ...原创 2019-03-11 17:12:32 · 899 阅读 · 0 评论 -
xv6 lab1
本文目标是根据MIT6.8.28课程学习xv6 lab1。1.描述参考:https://pdos.csail.mit.edu/6.828/2017/labs/lab1/原创 2019-03-07 19:05:25 · 1624 阅读 · 0 评论 -
xv6 stack overflow
学习目的:kernel stack overflow.原创 2019-04-28 17:20:49 · 661 阅读 · 0 评论
分享