Lines Matching defs:evp
111 int timer_create(clockid_t clk, struct sigevent *restrict evp, timer_t *restrict res)
122 switch (evp ? evp->sigev_notify : SIGEV_SIGNAL) {
126 if (evp) {
127 ksev.sigev_value = evp->sigev_value;
128 ksev.sigev_signo = evp->sigev_signo;
129 ksev.sigev_notify = evp->sigev_notify;
130 if (evp->sigev_notify == SIGEV_THREAD_ID)
131 ksev.sigev_tid = evp->sigev_notify_thread_id;
146 if (evp->sigev_notify_attributes)
147 attr = *evp->sigev_notify_attributes;
152 args.sev = evp;