Home
last modified time | relevance | path

Searched refs:thread_struct (Results 1 – 5 of 5) sorted by relevance

/DragonOS-0.1.8/kernel/src/process/
Dproc-types.h44 struct thread_struct struct
91 struct thread_struct *thread;
Dfork.c246 struct thread_struct *thd = (struct thread_struct *)(pcb + 1); in process_copy_thread()
247 memset(thd, 0, sizeof(struct thread_struct)); in process_copy_thread()
Dprocess.h175 extern struct thread_struct initial_thread;
Dprocess.c64 struct thread_struct initial_thread = {
/DragonOS-0.1.8/kernel/src/smp/
Dsmp.c185 current_pcb->thread = (struct thread_struct *)(current_pcb + 1); // 将线程结构体放置在pcb后方 in smp_ap_start()