Lines Matching refs:ev
463 struct sigevent ev; in timer_create() local
483 if (copyin(evp, &ev, sizeof (struct oldsigevent))) in timer_create()
486 if (ev.sigev_notify == SIGEV_PORT || in timer_create()
487 ev.sigev_notify == SIGEV_THREAD) { in timer_create()
488 if (copyin(ev.sigev_value.sival_ptr, &tim_pnevp, in timer_create()
499 ev.sigev_notify = ev32.sigev_notify; in timer_create()
500 ev.sigev_signo = ev32.sigev_signo; in timer_create()
505 ev.sigev_value.sival_int = ev32.sigev_value.sival_int; in timer_create()
506 if (ev.sigev_notify == SIGEV_PORT || in timer_create()
507 ev.sigev_notify == SIGEV_THREAD) { in timer_create()
520 switch (ev.sigev_notify) { in timer_create()
524 if (ev.sigev_signo < 1 || ev.sigev_signo >= NSIG) in timer_create()
537 ev = backend->clk_default; in timer_create()
591 sigq->sq_info.si_signo = ev.sigev_signo; in timer_create()
595 sigq->sq_info.si_value = ev.sigev_value; in timer_create()
610 if (ev.sigev_notify == SIGEV_THREAD || in timer_create()
611 ev.sigev_notify == SIGEV_PORT) { in timer_create()
665 if (ev.sigev_notify == SIGEV_SIGNAL) in timer_create()
675 if ((error = backend->clk_timer_create(it, &ev)) != 0) in timer_create()