1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-22 16:16:16 +04:00
rCore/status.md
2018-11-20 01:29:44 +08:00

1.6 KiB
Raw Blame History

ucore_os_lab port status

lab1:

  • Basic initLocalAPICIOAPICGDTPIC
  • DeviceKeyboardSerialPITIDE
  • Interrupt & Trapframe
  • ※ Muilt-core startup

lab2: Physical memory management

  • Frame allocatorNaive
  • Frame allocatorFirst FitBest FitWorst FitBuddySlab
  • Higher half kernel space
  • Kernel remap

lab3: Virtual memory management

  • Page table
  • Heap allocatorLinkedList (Rust crate)
  • ※ Stack allocatorNaive
  • MM & VMA
  • Copy on write
  • Swap

lab4: Kernel thread

  • idleproc
  • initproc
  • fork
  • Scheduler thread

lab5: User thread

  • Run xv6 64bit user programsSee the list below
  • Run ucore 32bit user programsSee the list below

lab6: Schedule

  • Schedule framework
  • RRScheduler
  • StrideScheduler

lab7: Synchronization

  • Mutex
  • Semaphore
  • Monitor
  • Dinning Philosophers Problem

lab8: File system

  • Simple file system
  • Load user programs from .img
  • FS framework for process
  • Device IO

uCore 32bit user programs pass status

  • badarg
  • badsegment
  • divzero
  • exit
  • faultread
  • faultreadkernel
  • forktest
  • forktree
  • hello
  • ls
  • matrix
  • pgdir
  • priority
  • sh
  • sleep
  • sleepkill
  • softint
  • spin
  • testbss
  • waitkill
  • yield

xv6 64bit user programs pass status

  • cat
  • chmod
  • echo
  • forktest
  • grep
  • init
  • kill
  • ln
  • ls
  • mkdir
  • rm
  • sh
  • stressfs
  • usertests
  • wc
  • zombie