Loading system/osi/src/alarm.c +1 −1 Original line number Diff line number Diff line Loading @@ -463,7 +463,7 @@ static bool timer_create_internal(const clockid_t clock_id, timer_t *timer) { sigevent.sigev_notify = SIGEV_THREAD; sigevent.sigev_notify_function = (void (*)(union sigval))timer_callback; if (timer_create(clock_id, &sigevent, timer) == -1) { LOG_ERROR("%s unable to create timer with clock %d: %s", __func__, clock_id, strerror(errno)); LOG_ERROR(LOG_TAG, "%s unable to create timer with clock %d: %s", __func__, clock_id, strerror(errno)); return false; } Loading Loading
system/osi/src/alarm.c +1 −1 Original line number Diff line number Diff line Loading @@ -463,7 +463,7 @@ static bool timer_create_internal(const clockid_t clock_id, timer_t *timer) { sigevent.sigev_notify = SIGEV_THREAD; sigevent.sigev_notify_function = (void (*)(union sigval))timer_callback; if (timer_create(clock_id, &sigevent, timer) == -1) { LOG_ERROR("%s unable to create timer with clock %d: %s", __func__, clock_id, strerror(errno)); LOG_ERROR(LOG_TAG, "%s unable to create timer with clock %d: %s", __func__, clock_id, strerror(errno)); return false; } Loading