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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
## ucore_os_lab port status
#### lab1:
- [x] Basic init: LocalAPIC, IOAPIC, GDT, PIC
- [x] Device: Keyboard, Serial, PIT, IDE
- [x] Interrupt & Trapframe
- [x] ※ Muilt-core startup
#### lab2: Physical memory management
- [x] Frame allocator: Naive
- [ ] Frame allocator: First Fit, Best Fit, Worst Fit, Buddy, Slab
- [x] Higher half kernel space
- [x] Kernel remap
#### lab3: Virtual memory management
- [x] Page table
- [x] Heap allocator: LinkedList (Rust crate)
- [x] ※ Stack allocator: Naive
- [x] MM & VMA
- [x] Copy on write
- [x] Swap
#### lab4: Kernel thread
- [x] idleproc
- [x] initproc
- [x] fork
- [x] Scheduler thread
#### lab5: User thread
- [x] Run xv6 64bit user programs: See the list below
- [x] Run ucore 32bit user programs: See the list below
#### lab6: Schedule
- [x] Schedule framework
- [x] RRScheduler
- [x] StrideScheduler
#### lab7: Synchronization
- [x] Mutex
- [x] Semaphore
- [x] Monitor
- [x] Dinning Philosophers Problem
#### lab8: File system
- [x] Simple file system
- [x] Load user programs from .img
- [x] FS framework for process
- [x] Device IO
## uCore 32bit user programs pass status
- [ ] badarg
- [ ] badsegment
- [x] divzero
- [x] exit
- [x] faultread
- [x] faultreadkernel
- [x] forktest
- [x] forktree
- [x] hello
- [x] ls
- [x] matrix
- [ ] pgdir
- [x] priority
- [x] sh
- [x] sleep
- [x] sleepkill
- [x] softint
- [x] spin
- [x] testbss
- [x] waitkill
- [x] yield
## xv6 64bit user programs pass status
- [ ] cat
- [ ] chmod
- [ ] echo
- [ ] forktest
- [ ] grep
- [ ] init
- [ ] kill
- [ ] ln
- [ ] ls
- [ ] mkdir
- [ ] rm
- [ ] sh
- [ ] stressfs
- [ ] usertests
- [ ] wc
- [ ] zombie