thread_t           96 include/sys/prex.h int	thread_create(task_t task, thread_t *tp);
thread_t           97 include/sys/prex.h int	thread_terminate(thread_t t);
thread_t           98 include/sys/prex.h int	thread_load(thread_t t, void (*entry)(void), void *stack);
thread_t           99 include/sys/prex.h thread_t thread_self(void);
thread_t          101 include/sys/prex.h int	thread_suspend(thread_t t);
thread_t          102 include/sys/prex.h int	thread_resume(thread_t t);
thread_t          103 include/sys/prex.h int	thread_getpri(thread_t t, int *pri);
thread_t          104 include/sys/prex.h int	thread_setpri(thread_t t, int	pri);
thread_t          105 include/sys/prex.h int	thread_getpolicy(thread_t t, int *policy);
thread_t          106 include/sys/prex.h int	thread_setpolicy(thread_t t, int policy);
thread_t          123 include/sys/prex.h int	timer_periodic(thread_t t, u_long start, u_long period);
thread_t           84 include/sys/sysinfo.h 	thread_t	id;		/* thread id */
thread_t          160 include/sys/sysinfo.h 	thread_t	thread;		/* thread id of ist */
thread_t           70 include/sys/types.h #define THREAD_NULL	((thread_t)0)
thread_t           59 sys/include/ipc.h void	 msg_cancel(thread_t);
thread_t           47 sys/include/irq.h 	thread_t	thread;		/* thread id of ist */
thread_t           69 sys/include/sched.h thread_t sched_wakeone(struct event *);
thread_t           70 sys/include/sched.h void	 sched_unsleep(thread_t, int);
thread_t           72 sys/include/sched.h void	 sched_suspend(thread_t);
thread_t           73 sys/include/sched.h void	 sched_resume(thread_t);
thread_t           75 sys/include/sched.h void	 sched_start(thread_t, int, int);
thread_t           76 sys/include/sched.h void	 sched_stop(thread_t);
thread_t           79 sys/include/sched.h int	 sched_getpri(thread_t);
thread_t           80 sys/include/sched.h void	 sched_setpri(thread_t, int, int);
thread_t           81 sys/include/sched.h int	 sched_getpolicy(thread_t);
thread_t           82 sys/include/sched.h int	 sched_setpolicy(thread_t, int);
thread_t           52 sys/include/sync.h 	thread_t	holder;		/* thread that holds the mutex */
thread_t           86 sys/include/sync.h void	 mutex_cancel(thread_t);
thread_t           87 sys/include/sync.h void	 mutex_setpri(thread_t, int);
thread_t           69 sys/include/thread.h 	thread_t	sender;		/* thread that sends IPC message */
thread_t           70 sys/include/thread.h 	thread_t	receiver;	/* thread that receives IPC message */
thread_t          103 sys/include/thread.h int	 thread_create(task_t, thread_t *);
thread_t          104 sys/include/thread.h int	 thread_terminate(thread_t);
thread_t          105 sys/include/thread.h void	 thread_destroy(thread_t);
thread_t          106 sys/include/thread.h int	 thread_load(thread_t, void (*)(void), void *);
thread_t          107 sys/include/thread.h thread_t thread_self(void);
thread_t          108 sys/include/thread.h int	 thread_valid(thread_t);
thread_t          110 sys/include/thread.h int	 thread_suspend(thread_t);
thread_t          111 sys/include/thread.h int	 thread_resume(thread_t);
thread_t          112 sys/include/thread.h int	 thread_schedparam(thread_t, int, int *);
thread_t          115 sys/include/thread.h thread_t kthread_create(void (*)(void *), void *, int);
thread_t          116 sys/include/thread.h void	 kthread_terminate(thread_t);
thread_t           78 sys/include/timer.h int	 timer_periodic(thread_t, u_long, u_long);
thread_t           80 sys/include/timer.h void	 timer_cancel(thread_t);
thread_t           68 sys/ipc/msg.c  static thread_t	msg_dequeue(queue_t);
thread_t           69 sys/ipc/msg.c  static void	msg_enqueue(queue_t, thread_t);
thread_t           84 sys/ipc/msg.c  	thread_t t;
thread_t          190 sys/ipc/msg.c  	thread_t t;
thread_t          290 sys/ipc/msg.c  	thread_t t;
thread_t          357 sys/ipc/msg.c  msg_cancel(thread_t t)
thread_t          386 sys/ipc/msg.c  	thread_t t;
thread_t          413 sys/ipc/msg.c  static thread_t
thread_t          417 sys/ipc/msg.c  	thread_t t, top;
thread_t          433 sys/ipc/msg.c  msg_enqueue(queue_t head, thread_t t)
thread_t          101 sys/kern/exception.c 	thread_t t;
thread_t          176 sys/kern/exception.c 	thread_t t = NULL;
thread_t          118 sys/kern/sched.c runq_enqueue(thread_t t)
thread_t          133 sys/kern/sched.c runq_insert(thread_t t)
thread_t          145 sys/kern/sched.c static thread_t
thread_t          149 sys/kern/sched.c 	thread_t t;
thread_t          163 sys/kern/sched.c runq_remove(thread_t t)
thread_t          177 sys/kern/sched.c 	thread_t t;
thread_t          198 sys/kern/sched.c sched_setrun(thread_t t)
thread_t          217 sys/kern/sched.c 	thread_t prev, next;
thread_t          257 sys/kern/sched.c 	thread_t t = (thread_t)arg;
thread_t          310 sys/kern/sched.c 	thread_t t;
thread_t          334 sys/kern/sched.c thread_t
thread_t          338 sys/kern/sched.c 	thread_t top, t = NULL;
thread_t          374 sys/kern/sched.c sched_unsleep(thread_t t, int result)
thread_t          412 sys/kern/sched.c sched_suspend(thread_t t)
thread_t          429 sys/kern/sched.c sched_resume(thread_t t)
thread_t          471 sys/kern/sched.c sched_start(thread_t t, int pri, int policy)
thread_t          486 sys/kern/sched.c sched_stop(thread_t t)
thread_t          567 sys/kern/sched.c sched_getpri(thread_t t)
thread_t          581 sys/kern/sched.c sched_setpri(thread_t t, int basepri, int pri)
thread_t          614 sys/kern/sched.c sched_getpolicy(thread_t t)
thread_t          624 sys/kern/sched.c sched_setpolicy(thread_t t, int policy)
thread_t          716 sys/kern/sched.c 	thread_t t;
thread_t          169 sys/kern/task.c 	thread_t t;
thread_t          230 sys/kern/task.c 	thread_t t;
thread_t          266 sys/kern/task.c 	thread_t t;
thread_t          478 sys/kern/task.c 	thread_t t;
thread_t           44 sys/kern/thread.c static thread_t thread_allocate(task_t);
thread_t           45 sys/kern/thread.c static void	thread_deallocate(thread_t);
thread_t           48 sys/kern/thread.c static thread_t		zombie;		/* zombie thread */
thread_t           52 sys/kern/thread.c thread_t curthread = &idle_thread;	/* current thread */
thread_t           65 sys/kern/thread.c thread_create(task_t task, thread_t *tp)
thread_t           67 sys/kern/thread.c 	thread_t t;
thread_t          129 sys/kern/thread.c thread_terminate(thread_t t)
thread_t          150 sys/kern/thread.c thread_destroy(thread_t th)
thread_t          167 sys/kern/thread.c thread_load(thread_t t, void (*entry)(void), void *stack)
thread_t          200 sys/kern/thread.c thread_t
thread_t          211 sys/kern/thread.c thread_valid(thread_t t)
thread_t          214 sys/kern/thread.c 	thread_t tmp;
thread_t          243 sys/kern/thread.c thread_suspend(thread_t t)
thread_t          269 sys/kern/thread.c thread_resume(thread_t t)
thread_t          299 sys/kern/thread.c thread_schedparam(thread_t t, int op, int *param)
thread_t          410 sys/kern/thread.c static thread_t
thread_t          444 sys/kern/thread.c thread_deallocate(thread_t t)
thread_t          485 sys/kern/thread.c 	thread_t t;
thread_t          524 sys/kern/thread.c thread_t
thread_t          527 sys/kern/thread.c 	thread_t t;
thread_t          555 sys/kern/thread.c kthread_terminate(thread_t t)
thread_t          240 sys/kern/timer.c timer_periodic(thread_t t, u_long start, u_long period)
thread_t          330 sys/kern/timer.c timer_cancel(thread_t t)
thread_t           82 sys/sync/mutex.c static int	prio_inherit(thread_t);
thread_t           83 sys/sync/mutex.c static void	prio_uninherit(thread_t);
thread_t          316 sys/sync/mutex.c mutex_cancel(thread_t t)
thread_t          320 sys/sync/mutex.c 	thread_t holder;
thread_t          353 sys/sync/mutex.c mutex_setpri(thread_t t, int pri)
thread_t          418 sys/sync/mutex.c prio_inherit(thread_t waiter)
thread_t          421 sys/sync/mutex.c 	thread_t holder;
thread_t          469 sys/sync/mutex.c prio_uninherit(thread_t t)
thread_t           87 usr/lib/posix/process/fork.c 	thread_t t;
thread_t           46 usr/lib/posix/process/fork_nommu.c static thread_t __parent_thread;
thread_t           89 usr/lib/posix/process/fork_nommu.c 	thread_t t;
thread_t           51 usr/lib/posix/process/waitpid.c 	thread_t self;
thread_t           32 usr/lib/prex/syscalls/thread_getpolicy.c extern int thread_schedparam(thread_t t, int op, int *param);
thread_t           35 usr/lib/prex/syscalls/thread_getpolicy.c thread_getpolicy(thread_t t, int *policy)
thread_t           32 usr/lib/prex/syscalls/thread_getpri.c extern int thread_schedparam(thread_t t, int op, int *param);
thread_t           35 usr/lib/prex/syscalls/thread_getpri.c thread_getpri(thread_t t, int *pri)
thread_t           32 usr/lib/prex/syscalls/thread_setpolicy.c extern int thread_schedparam(thread_t t, int op, int *param);
thread_t           35 usr/lib/prex/syscalls/thread_setpolicy.c thread_setpolicy(thread_t t, int policy)
thread_t           32 usr/lib/prex/syscalls/thread_setpri.c extern int thread_schedparam(thread_t t, int op, int *param);
thread_t           35 usr/lib/prex/syscalls/thread_setpri.c thread_setpri(thread_t t, int pri)
thread_t           49 usr/sample/balls/balls.c static thread_t
thread_t           52 usr/sample/balls/balls.c 	thread_t t;
thread_t           48 usr/sample/bench/bench.c static thread_t *thread;
thread_t           76 usr/sample/bench/bench.c 			    sizeof(thread_t) * NR_THREADS, 1);
thread_t           57 usr/sample/ipc/ipc.c 	thread_t t;
thread_t           63 usr/sample/mutex/mutex.c static thread_t th_1, th_2, th_3;
thread_t           81 usr/sample/mutex/mutex.c thread_t
thread_t           84 usr/sample/mutex/mutex.c 	thread_t t;
thread_t           42 usr/sample/sem/sem.c 	thread_t t;
thread_t           63 usr/sample/sem/sem.c 	thread_t t;
thread_t           48 usr/sample/task/task.c 	thread_t t;
thread_t           45 usr/sample/thread/thread.c static thread_t main_th;
thread_t           54 usr/sample/thread/thread.c 	thread_t t;
thread_t           77 usr/server/exec/exec_execve.c 	thread_t t;
thread_t          948 usr/server/fs/vfs/main.c 	thread_t t;
thread_t          269 usr/server/pow/pow.c 	thread_t t;
thread_t           52 usr/test/attack/attack.c 	thread_t t	= (thread_t)random();
thread_t           53 usr/test/attack/attack.c 	thread_t *tp	= (thread_t *)random();
thread_t           54 usr/test/deadlock/deadlock.c static thread_t th_1, th_2;
thread_t           57 usr/test/deadlock/deadlock.c thread_t
thread_t           60 usr/test/deadlock/deadlock.c 	thread_t t;
thread_t           46 usr/test/ipc/ipc.c 	thread_t t;
thread_t           48 usr/test/ipc_mt/ipc_mt.c 	thread_t t;
thread_t          117 usr/test/kmon/cmd.c 	thread_t t;
thread_t          124 usr/test/kmon/cmd.c 	t = (thread_t)strtoul(argv[1], &ep, 16);
thread_t           57 usr/test/task/task.c 	thread_t t;
thread_t           39 usr/test/thread/thread.c static thread_t
thread_t           42 usr/test/thread/thread.c 	thread_t t;
thread_t           69 usr/test/thread/thread.c 	thread_t self, t;