Lines Matching refs:thread
68 Blocks the thread while waiting for the semaphore to be
69 signaled. If the "timeout" argument is non-zero, the thread should
71 milliseconds). If the "timeout" argument is zero, the thread should be
77 SYS_ARCH_TIMEOUT. If the thread didn't have to wait for the semaphore
125 Blocks the thread until a message arrives in the mailbox, but does
126 not block the thread longer than "timeout" milliseconds (similar to
127 the sys_arch_sem_wait() function). If "timeout" is 0, the thread should
171 - sys_thread_t sys_thread_new(char *name, void (* thread)(void *arg), void *arg, int stacksize, int prio)
173 Starts a new thread named "name" with priority "prio" that will begin its
174 execution in the function "thread()". The "arg" argument will be passed as an
175 argument to the thread() function. The stack size to used for this thread is
176 the "stacksize" parameter. The id of the new thread is returned. Both the id