Home
last modified time | relevance | path

Searched refs:sigev_notify_function (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/lib/posix/options/
Dtimer.c53 if (timer->evp.sigev_notify_function == NULL) { in zephyr_timer_wrapper()
58 LOG_DBG("calling sigev_notify_function %p", timer->evp.sigev_notify_function); in zephyr_timer_wrapper()
59 (timer->evp.sigev_notify_function)(timer->evp.sigev_value); in zephyr_timer_wrapper()
84 if (timer->evp.sigev_notify_function == NULL) { in zephyr_thread_wrapper()
89 LOG_DBG("calling sigev_notify_function %p", timer->evp.sigev_notify_function); in zephyr_thread_wrapper()
90 (timer->evp.sigev_notify_function)(timer->evp.sigev_value); in zephyr_thread_wrapper()
Dmqueue.c410 sevp->sigev_notify_function(sevp->sigev_value); in mq_notify_thread()
467 sevp->sigev_notify_function(sevp->sigev_value); in send_message()
/Zephyr-latest/tests/posix/common/src/
Dmqueue.c127 .sigev_notify_function = notify_function_basic, in ZTEST()
176 .sigev_notify_function = notify_function_thread, in ZTEST()
208 .sigev_notify_function = notify_function_basic, in ZTEST()
248 .sigev_notify_function = notify_function_basic, in ZTEST()
Dtimer.c42 sig.sigev_notify_function = handler; in test_timer()
132 sig.sigev_notify_function = handler; in ZTEST()
/Zephyr-latest/include/zephyr/posix/
Dsignal.h99 void (*sigev_notify_function)(union sigval val); member
/Zephyr-latest/tests/posix/headers/src/
Dsignal_h.c39 zassert_not_equal(-1, offsetof(struct sigevent, sigev_notify_function)); in ZTEST()