libowfat/io/iom_abort.c
2024-04-05 14:49:51 +00:00

13 lines
273 B
C

#include "io_internal.h"
int iom_abort(iomux_t* c) {
c->working=-2;
#ifdef __dietlibc__
return cnd_broadcast(&c->sem) == thrd_success ? 0 : -1;
#elif defined(__APPLE__)
return pthread_cond_broadcast(&c->sem) == 0 ? 0 : -1;
#else
return sem_post(&c->sem);
#endif
}