t_proc             66 kern/include/current.h #define curproc (curthread->t_proc)
t_proc             85 kern/include/thread.h 	struct proc *t_proc;		/* Process thread belongs to */
t_proc            286 kern/proc/proc.c 	KASSERT(t->t_proc == NULL);
t_proc            294 kern/proc/proc.c 	t->t_proc = proc;
t_proc            308 kern/proc/proc.c 	proc = t->t_proc;
t_proc            318 kern/proc/proc.c 			t->t_proc = NULL;
t_proc            145 kern/thread/thread.c 	thread->t_proc = NULL;
t_proc            251 kern/thread/thread.c 	KASSERT(thread->t_proc == NULL);
t_proc            381 kern/thread/thread.c 	KASSERT(curthread->t_proc != NULL);
t_proc            512 kern/thread/thread.c 		proc = curthread->t_proc;
t_proc            800 kern/thread/thread.c 	KASSERT(cur->t_proc == NULL);