thread_load        98 include/sys/prex.h int	thread_load(thread_t t, void (*entry)(void), void *stack);
thread_load       106 sys/include/thread.h int	 thread_load(thread_t, void (*)(void), void *);
thread_load        97 sys/kern/sysent.c 	/* 14 */ SYSENT(3, thread_load),
thread_load       509 sys/kern/task.c 		error = thread_load(t, (void (*)(void))mod->entry, sp);
thread_load       127 usr/lib/posix/process/fork.c 		thread_load(t, __child_entry, NULL);
thread_load       133 usr/lib/posix/process/fork_nommu.c 		thread_load(t, __child_entry, NULL);
thread_load       148 usr/lib/posix/process/fork_nommu.c 		thread_load(__parent_thread, __parent_entry, NULL);
thread_load        56 usr/sample/balls/balls.c 	if (thread_load(t, start, stack) != 0)
thread_load        89 usr/sample/bench/bench.c 		if (thread_load(thread[i], null_thread, &stack) != 0)
thread_load        68 usr/sample/ipc/ipc.c 	if (thread_load(t, func, stack) != 0)
thread_load        89 usr/sample/mutex/mutex.c 	if (thread_load(t, start, stack) != 0)
thread_load        47 usr/sample/sem/sem.c 	if (thread_load(t, start, stack) != 0)
thread_load        57 usr/sample/task/task.c 	if (thread_load(t, func, stack + 1024) != 0)
thread_load        59 usr/sample/thread/thread.c 	if (thread_load(t, start, stack) != 0)
thread_load       194 usr/server/exec/exec_execve.c 	if ((error = thread_load(t, (void (*)(void))exec.entry, sp)) != 0)
thread_load       959 usr/server/fs/vfs/main.c 	if ((error = thread_load(t, entry, sp)) != 0)
thread_load       280 usr/server/pow/pow.c 	if ((error = thread_load(t, entry, sp)) != 0)
thread_load        67 usr/test/deadlock/deadlock.c 	error = thread_load(t, start, stack);
thread_load        53 usr/test/ipc/ipc.c 	error = thread_load(t, start, stack);
thread_load        55 usr/test/ipc_mt/ipc_mt.c 	error = thread_load(t, start, stack);
thread_load        87 usr/test/task/task.c 		error = thread_load(t, test_thread, stack[i]+1024);
thread_load        48 usr/test/thread/thread.c 	if ((error = thread_load(t, start, stack)) != 0)