LWIP patch for sockets.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5739 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
460ae80f92
commit
7f97aa2059
Binary file not shown.
Binary file not shown.
|
@ -90,6 +90,14 @@ void sys_sem_signal(sys_sem_t *sem) {
|
||||||
chSemSignal(*sem);
|
chSemSignal(*sem);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* CHIBIOS FIX: specific variant of this call to be called from within
|
||||||
|
a lock.*/
|
||||||
|
void sys_sem_signal_S(sys_sem_t *sem) {
|
||||||
|
|
||||||
|
chSemSignalI(*sem);
|
||||||
|
chSchRescheduleS();
|
||||||
|
}
|
||||||
|
|
||||||
u32_t sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout) {
|
u32_t sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout) {
|
||||||
systime_t time, tmo;
|
systime_t time, tmo;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue