You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			|  | 3 years ago | |
|---|---|---|
| boot | 3 years ago | |
| fs | 3 years ago | |
| include | 3 years ago | |
| init | 3 years ago | |
| kernel | 3 years ago | |
| lib | 3 years ago | |
| mm | 3 years ago | |
| tools | 3 years ago | |
| Image | 3 years ago | |
| Image.bkp | 3 years ago | |
| Makefile | 3 years ago | |
| README.md | 3 years ago | |
| System.map | 3 years ago | |
| System.map.2 | 3 years ago | |
| execve2.patch | 3 years ago | |
| linux-0.11-lab.zip | 3 years ago | |
| memory.c | 3 years ago | |
| sys.c | 3 years ago | |
| sys_update.c | 3 years ago | |
		
			
				
				README.md
			
		
		
	
	linux_lab_os_exp1
在6.21日实现了sys_getcwd函数,在6.22日实现sys_getdents和sys_sleep,在6.23日实现了sys_execve2 其中sys_getcwd,sys_getdents,sys_sleep 在sys.c中定义,sys_execve2在memory.c中定义; sys_getcwd参照了find_entry的实现方式;sys_getdents和sys_getcwd基本原理相似,没有回溯回根节点的过程而已; sys_sleep的实现就是signal,alarm,pause的混合; sys_execve2模仿sys_execve,在do_execve的基础上加了类似do_no_page的代码;