Lines Matching full:that
7 general idea is that porting lwIP to new architectures requires only
10 that does not rely on any underlying operating system.
37 Since lwIP 1.4.0, semaphore and mailbox functions are prototyped in a way that
50 Creates a new semaphore. The semaphore is allocated to the memory that 'sem'
80 Notice that lwIP implements a function with a similar name,
81 sys_sem_wait(), that uses the sys_arch_sem_wait() function.
92 Invalidate a semaphore so that sys_sem_valid() returns 0.
93 ATTENTION: This does NOT mean that the semaphore shall be deallocated:
129 parameter that is set by the function (i.e., by doing "*msg =
130 ptr"). The "msg" parameter maybe NULL to indicate that the message
137 Note that a function with a similar name, sys_mbox_fetch(), is
162 Invalidate a mailbox so that sys_mbox_valid() returns 0.
163 ATTENTION: This does NOT mean that the mailbox shall be deallocated:
173 Starts a new thread named "name" with priority "prio" that will begin its
188 that case the return value indicates that it is already protected.