Home | History | Annotate | Download | only in include

Lines Matching defs:thread

34  *      2006-May-08: Added atomic_{inc,set,get}, thread struct, debug function,
80 struct thread {
235 /* create_fifo_thread: spawn a SCHED_FIFO thread with priority prio running
236 * func as the thread function with arg as it's parameter.
243 /* create_rr_thread: spawn a SCHED_RR thread with priority prio running
244 * func as the thread function with arg as it's parameter.
251 /* create_other_thread: spawn a SCHED_OTHER thread
252 * func as the thread function with arg as it's parameter.
258 /* Change the priority of a running thread */
275 /* get_thread: return a struct thread pointer from the list */
276 struct thread * get_thread(int i);
278 /* signal thread i to quit and then call join */