Lines Matching refs:sig
35 struct sigevent sig = {0}; in test_timer() local
41 sig.sigev_notify = sigev_notify; in test_timer()
42 sig.sigev_notify_function = handler; in test_timer()
43 sig.sigev_value.sival_int = TEST_SIGNAL_VAL; in test_timer()
46 zassert_ok(timer_create(clock_id, &sig, &timerid)); in test_timer()
107 struct sigevent sig = {0}; in ZTEST() local
110 sig.sigev_notify = SIGEV_NONE; in ZTEST()
112 zassert_ok(timer_create(CLOCK_MONOTONIC, &sig, &timerid)); in ZTEST()
127 struct sigevent sig = {0}; in ZTEST() local
131 sig.sigev_notify = SIGEV_SIGNAL; in ZTEST()
132 sig.sigev_notify_function = handler; in ZTEST()
133 sig.sigev_value.sival_int = TEST_SIGNAL_VAL; in ZTEST()
135 zassert_ok(timer_create(CLOCK_MONOTONIC, &sig, &timerid)); in ZTEST()