p_threads          54 kern/include/proc.h 	struct threadarray p_threads;	/* Threads in this process */
p_threads          93 kern/proc/proc.c 	threadarray_init(&proc->p_threads);
p_threads         166 kern/proc/proc.c 	threadarray_cleanup(&proc->p_threads);
p_threads         289 kern/proc/proc.c 	result = threadarray_add(&proc->p_threads, t, NULL);
p_threads         313 kern/proc/proc.c 	num = threadarray_num(&proc->p_threads);
p_threads         315 kern/proc/proc.c 		if (threadarray_get(&proc->p_threads, i) == t) {
p_threads         316 kern/proc/proc.c 			threadarray_remove(&proc->p_threads, i);