Lines Matching defs:thread
34 * 2006-May-08: Added atomic_{inc,set,get}, thread struct, debug function,
79 struct thread {
234 /* create_fifo_thread: spawn a SCHED_FIFO thread with priority prio running
235 * func as the thread function with arg as it's parameter.
242 /* create_rr_thread: spawn a SCHED_RR thread with priority prio running
243 * func as the thread function with arg as it's parameter.
250 /* create_other_thread: spawn a SCHED_OTHER thread
251 * func as the thread function with arg as it's parameter.
257 /* Change the priority of a running thread */
274 /* get_thread: return a struct thread pointer from the list */
275 struct thread * get_thread(int i);
277 /* signal thread i to quit and then call join */