Move Process & Thread to the object folder.

This commit is contained in:
Drew Galbraith 2023-06-06 20:18:53 -07:00
parent 4e278a4664
commit b5ad454ad1
12 changed files with 16 additions and 16 deletions

View file

@ -15,12 +15,12 @@ add_executable(zion
memory/physical_memory.cpp
memory/user_stack_manager.cpp
memory/virtual_memory.cpp
object/process.cpp
object/thread.cpp
scheduler/context_switch.s
scheduler/jump_user_space.s
scheduler/process.cpp
scheduler/process_manager.cpp
scheduler/scheduler.cpp
scheduler/thread.cpp
syscall/syscall.cpp
syscall/syscall_enter.s
zion.cpp)