Magenta Job/Process/Thread Study
Posted on 週一 10 七月 2017 in Archive
Magenta Job/Process/Thread Study
Thread
syscall: kernel/lib/syscalls/syscalls_task.cpp sys_thread_create --> process->CreateUserThread ----> ut->Initialize(name.data(), name.length());
source: kernel/lib/magenta/user_thread.cpp
Init. flow
- allocate_stack
- new a LK thread assign user_thread to itself register thread state change callback
- attach process address space vmm_aspace
Thread Stucture
header: include/kernel/thread.h 最新LK的thread: https://github.com/littlekernel/lk/blob/master/include/kernel/thread.h ^ 已經有VMM, SMP相關的欄位
AOSP Trusty裡面LK的thread: https://android.googlesource.com/trusty/lk/common/+/master/include/kernel/thread.h ^ 比較舊
New attributes in Magenta
- user thread related
- signal
- priority boost
- interruptable
- profiling & debug related
- default一定有vmm_aspace
- default一定有SMP
Thread context switch
source: kernel/kernel/thread.c
void thread_resched(void)
---> void vmm_context_switch(vmm_aspace_t oldspace, vmm_aspace_t newaspace) kernel/kernel/vm/vmm.c
-----> arch_mmu_context_switch (Platform dependent here) // change VM space
Process
source: kernel/lib/magenta/process_dispatcher.cpp
System Call kernel entries
source location: kernel/lib/syscalls/
接到各個kernel space object dispatcher