实例介绍
实现虚拟内存管理的nachos操作系统实验代码
【实例截图】
【核心代码】
z_l_l_m-6243061-nachos-3.4.zip
└── nachos-3.4
├── bin
│ ├── coff2flat.c
│ ├── coff2noff
│ ├── coff2noff.c
│ ├── coff2noff.o
│ ├── coff.h
│ ├── d.c
│ ├── disasm.c
│ ├── encode.h
│ ├── execute.c
│ ├── halt
│ ├── instr.h
│ ├── int.h
│ ├── main.c
│ ├── Makefile
│ ├── noff.h
│ ├── opstrings.c
│ ├── out.c
│ └── system.c
├── filesys
│ ├── addrspace.o
│ ├── bitmap.o
│ ├── console.o
│ ├── directory.cc
│ ├── directory.h
│ ├── directory.o
│ ├── disk.o
│ ├── exception.o
│ ├── filehdr.cc
│ ├── filehdr.h
│ ├── filehdr.o
│ ├── filesys.cc
│ ├── filesys.h
│ ├── filesys.o
│ ├── fstest.cc
│ ├── fstest.o
│ ├── interrupt.o
│ ├── list.o
│ ├── machine.o
│ ├── main.o
│ ├── Makefile
│ ├── mipssim.o
│ ├── nachos
│ ├── openfile.cc
│ ├── openfile.h
│ ├── openfile.o
│ ├── progtest.o
│ ├── readerwriter2.o
│ ├── scheduler.o
│ ├── stats.o
│ ├── switch.o
│ ├── swtch.s
│ ├── synchdisk.cc
│ ├── synchdisk.h
│ ├── synchdisk.o
│ ├── synchlist.o
│ ├── synch.o
│ ├── sysdep.o
│ ├── system.o
│ ├── test
│ │ ├── big
│ │ ├── medium
│ │ └── small
│ ├── thread.o
│ ├── threadtest1.o
│ ├── threadtest.o
│ ├── timer.o
│ ├── translate.o
│ └── utility.o
├── machine
│ ├── console.cc
│ ├── console.h
│ ├── disk.cc
│ ├── disk.h
│ ├── interrupt.cc
│ ├── interrupt.h
│ ├── machine.cc
│ ├── machine.h
│ ├── mipssim.cc
│ ├── mipssim.h
│ ├── network.cc
│ ├── network.h
│ ├── stats.cc
│ ├── stats.h
│ ├── sysdep.cc
│ ├── sysdep.h
│ ├── timer.cc
│ ├── timer.h
│ ├── translate.cc
│ └── translate.h
├── Makefile
├── Makefile.common
├── Makefile.dep
├── network
│ ├── addrspace.o
│ ├── bitmap.o
│ ├── console.o
│ ├── directory.o
│ ├── disk.o
│ ├── exception.o
│ ├── filehdr.o
│ ├── filesys.o
│ ├── fstest.o
│ ├── interrupt.o
│ ├── list.o
│ ├── machine.o
│ ├── main.o
│ ├── Makefile
│ ├── mipssim.o
│ ├── nachos
│ ├── nettest.cc
│ ├── nettest.o
│ ├── network.o
│ ├── openfile.o
│ ├── post.cc
│ ├── post.h
│ ├── post.o
│ ├── progtest.o
│ ├── readerwriter2.o
│ ├── README
│ ├── scheduler.o
│ ├── stats.o
│ ├── switch.o
│ ├── swtch.s
│ ├── synchdisk.o
│ ├── synchlist.o
│ ├── synch.o
│ ├── sysdep.o
│ ├── system.o
│ ├── thread.o
│ ├── threadtest1.o
│ ├── threadtest.o
│ ├── timer.o
│ ├── translate.o
│ └── utility.o
├── test
│ ├── halt
│ ├── halt.c
│ ├── halt.coff
│ ├── halt.o
│ ├── Makefile
│ ├── matmult
│ ├── matmult.c
│ ├── matmult.coff
│ ├── matmult.o
│ ├── script
│ ├── shell
│ ├── shell.c
│ ├── shell.coff
│ ├── shell.o
│ ├── sort
│ ├── sort.c
│ ├── sort.coff
│ ├── sort.o
│ ├── start.c
│ ├── start.o
│ ├── start.s
│ ├── swapfileforked thread
│ └── swapfilemain
├── threads
│ ├── bool.h
│ ├── copyright.h
│ ├── interrupt.o
│ ├── list.cc
│ ├── list.h
│ ├── list.o
│ ├── main.cc
│ ├── main.o
│ ├── Makefile
│ ├── nachos
│ ├── readerwriter2.cc
│ ├── readerwriter2.h
│ ├── readerwriter2.o
│ ├── scheduler.cc
│ ├── scheduler.h
│ ├── scheduler.o
│ ├── stats.o
│ ├── stdarg.h
│ ├── switch.c
│ ├── switch.h
│ ├── switch.o
│ ├── switch-old.s
│ ├── switch.s
│ ├── swtch.s
│ ├── synch.cc
│ ├── synch.dis
│ ├── synch.h
│ ├── synchlist.cc
│ ├── synchlist.h
│ ├── synchlist.o
│ ├── synch.o
│ ├── sysdep.o
│ ├── system.cc
│ ├── system.h
│ ├── system.o
│ ├── thread.cc
│ ├── thread.h
│ ├── thread.o
│ ├── threadtest1.cc
│ ├── threadtest1.o
│ ├── threadtest3.cc
│ ├── threadtest.cc
│ ├── threadtest.h
│ ├── threadtest.o
│ ├── timer.o
│ ├── utility.cc
│ ├── utility.h
│ └── utility.o
├── userprog
│ ├── addrspace.cc
│ ├── addrspace.h
│ ├── addrspace.o
│ ├── bitmap.cc
│ ├── bitmap.h
│ ├── bitmap.o
│ ├── console.o
│ ├── exception.cc
│ ├── exception.o
│ ├── interrupt.o
│ ├── list.o
│ ├── machine.o
│ ├── main.o
│ ├── Makefile
│ ├── mipssim.o
│ ├── nachos
│ ├── progtest.cc
│ ├── progtest.o
│ ├── readerwriter2.o
│ ├── scheduler.o
│ ├── stats.o
│ ├── switch.o
│ ├── swtch.s
│ ├── synchlist.o
│ ├── synch.o
│ ├── syscall.h
│ ├── sysdep.o
│ ├── system.o
│ ├── thread.o
│ ├── threadtest1.o
│ ├── threadtest.o
│ ├── timer.o
│ ├── translate.o
│ └── utility.o
└── vm
├── addrspace.o
├── bitmap.o
├── console.o
├── exception.o
├── interrupt.o
├── list.o
├── machine.o
├── main.o
├── Makefile
├── mipssim.o
├── nachos
├── progtest.o
├── readerwriter2.o
├── scheduler.o
├── stats.o
├── switch.o
├── swtch.s
├── synchlist.o
├── synch.o
├── sysdep.o
├── system.o
├── thread.o
├── threadtest1.o
├── threadtest.o
├── timer.o
├── translate.o
└── utility.o
10 directories, 262 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论