diff --git a/platforms/posix/src/px4_layer/px4_sem.cpp b/platforms/posix/src/px4_layer/px4_sem.cpp index c5d9e241edc0c345757ecba2a8cd8d3ebb88f5d2..d60d1cb8132d0e27d3123acb1f6bfac5355d2d0c 100644 --- a/platforms/posix/src/px4_layer/px4_sem.cpp +++ b/platforms/posix/src/px4_layer/px4_sem.cpp @@ -140,20 +140,24 @@ int px4_sem_timedwait(px4_sem_t *s, const struct timespec *abstime) ret = 0; } - int err = ret; + errno = ret; - if (err != 0 && err != ETIMEDOUT) { + if (ret != 0 && ret != ETIMEDOUT) { setbuf(stdout, nullptr); setbuf(stderr, nullptr); const unsigned NAMELEN = 32; char thread_name[NAMELEN] = {}; (void)pthread_getname_np(pthread_self(), thread_name, NAMELEN); - PX4_WARN("%s: px4_sem_timedwait failure: ret: %d, %s", thread_name, ret, strerror(err)); + PX4_WARN("%s: px4_sem_timedwait failure: ret: %d, %s", thread_name, ret, strerror(ret)); } int mret = pthread_mutex_unlock(&(s->lock)); - return (err) ? err : mret; + if (ret || mret) { + return -1; + } + + return 0; } int px4_sem_post(px4_sem_t *s)