thread_create      96 include/sys/prex.h int	thread_create(task_t task, thread_t *tp);
thread_create     103 sys/include/thread.h int	 thread_create(task_t, thread_t *);
thread_create      95 sys/kern/sysent.c 	/* 12 */ SYSENT(2, thread_create),
thread_create     506 sys/kern/task.c 		if ((error = thread_create(task, &t)) != 0)
thread_create     101 usr/lib/posix/process/fork.c 		if ((error = thread_create(tsk, &t)) != 0) {
thread_create     102 usr/lib/posix/process/fork_nommu.c 		if ((error = thread_create(tsk, &t)) != 0) {
thread_create      54 usr/sample/balls/balls.c 	if (thread_create(task_self(), &t) != 0)
thread_create      86 usr/sample/bench/bench.c 		if (thread_create(task, &thread[i]) != 0)
thread_create      65 usr/sample/ipc/ipc.c 	if (thread_create(task, &t) != 0)
thread_create      86 usr/sample/mutex/mutex.c 	if (thread_create(task_self(), &t) != 0)
thread_create      44 usr/sample/sem/sem.c 	if (thread_create(task_self(), &t) != 0)
thread_create      54 usr/sample/task/task.c 	if (thread_create(task, &t) != 0)
thread_create      56 usr/sample/thread/thread.c 	if (thread_create(task_self(), &t) != 0)
thread_create     172 usr/server/exec/exec_execve.c 	if ((error = thread_create(new_task, &t)) != 0)
thread_create     953 usr/server/fs/vfs/main.c 	if ((error = thread_create(self, &t)) != 0)
thread_create     274 usr/server/pow/pow.c 	if ((error = thread_create(self, &t)) != 0)
thread_create      95 usr/test/attack/attack.c 	thread_create(self, tp);
thread_create      63 usr/test/deadlock/deadlock.c 	error = thread_create(task_self(), &t);
thread_create      49 usr/test/ipc/ipc.c 	error = thread_create(task_self(), &t);
thread_create      51 usr/test/ipc_mt/ipc_mt.c 	error = thread_create(task_self(), &t);
thread_create      85 usr/test/task/task.c 		error = thread_create(task, &t);
thread_create      45 usr/test/thread/thread.c 	if ((error = thread_create(task_self(), &t)) != 0)