操作系统接口
页表
陷阱和系统调用
中断和驱动程序
锁
调度
文件系统
并发再探
总结
kernel
mkfs
user
Labs
Lectures (按课程时间表)
Readings
Homework
Quizzes
Appearance
#define T_DIR 1 #define T_FILE 2 #define T_DEVICE 3 struct stat { int dev; uint ino; short type; short nlink; uint64 size; };