You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "io_internal.h"
|
|
|
|
int iom_abort(iomux_t* c) {
|
|
c->working=-2;
|
|
#ifdef __dietlibc__
|
|
return cnd_broadcast(&c->sem);
|
|
#else
|
|
return sem_post(&c->sem);
|
|
#endif
|
|
}
|