Home
last modified time | relevance | path

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

/DragonOS-0.1.2/kernel/src/process/
Dproc-types.h43 struct thread_struct struct
90 struct thread_struct *thread;
Dprocess.h185 extern struct thread_struct initial_thread;
Dfork.c349 struct thread_struct *thd = (struct thread_struct *)(pcb + 1); in process_copy_thread()
350 memset(thd, 0, sizeof(struct thread_struct)); in process_copy_thread()
Dprocess.c64 struct thread_struct initial_thread = {
/DragonOS-0.1.2/kernel/src/smp/
Dsmp.c168 current_pcb->thread = (struct thread_struct *)(current_pcb + 1); // 将线程结构体放置在pcb后方 in smp_ap_start()