Lines Matching refs:evp
12 83 | newp->sigev_notify = (evp != NULL
125 @@ -52,16 +52,6 @@ timer_create (clockid_t clock_id, struct sigevent *evp, timer_t *timerid)
139 if (evp == NULL)
142 @@ -69,31 +59,17 @@ timer_create (clockid_t clock_id, struct sigevent *evp, timer_t *timerid)
149 evp = &local_evp;
153 - int retval = INLINE_SYSCALL (timer_create, 3, syscall_clockid, evp,
158 - newp->sigev_notify = (evp != NULL
159 - ? evp->sigev_notify : SIGEV_SIGNAL);
170 + if (INLINE_SYSCALL_CALL (timer_create, syscall_clockid, evp,
179 @@ -106,20 +82,18 @@ timer_create (clockid_t clock_id, struct sigevent *evp, timer_t *timerid)
190 newp->sival = evp->sigev_value;
191 newp->thrfunc = evp->sigev_notify_function;
199 if (evp->sigev_notify_attributes != NULL)
202 @@ -137,8 +111,7 @@ timer_create (clockid_t clock_id, struct sigevent *evp, timer_t *timerid)
212 @@ -150,27 +123,24 @@ timer_create (clockid_t clock_id, struct sigevent *evp, timer_t *timerid)