Lines Matching full:that
8 general idea is that porting lwIP to new architectures requires only
11 that does not rely on any underlying operating system.
36 Since lwIP 1.4.0, semaphore, mutexes and mailbox functions are prototyped in a way that
49 Creates a new semaphore. The semaphore is allocated to the memory that 'sem'
79 Notice that lwIP implements a function with a similar name,
80 sys_sem_wait(), that uses the sys_arch_sem_wait() function.
91 Invalidate a semaphore so that sys_sem_valid() returns 0.
92 ATTENTION: This does NOT mean that the semaphore shall be deallocated:
98 Creates a new mutex. The mutex is allocated to the memory that 'mutex'
125 Invalidate a mutex so that sys_mutex_valid() returns 0.
126 ATTENTION: This does NOT mean that the mutex shall be deallocated:
162 parameter that is set by the function (i.e., by doing "*msg =
163 ptr"). The "msg" parameter maybe NULL to indicate that the message
170 Note that a function with a similar name, sys_mbox_fetch(), is
195 Invalidate a mailbox so that sys_mbox_valid() returns 0.
196 ATTENTION: This does NOT mean that the mailbox shall be deallocated:
206 Starts a new thread named "name" with priority "prio" that will begin its
224 that case the return value indicates that it is already protected.