HomeSort by: relevance | last modified time | path
    Searched defs:timerid (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
kern_time.c 1210 syscallarg(timer_t *) timerid;
1213 return timer_create1(SCARG(uap, timerid), SCARG(uap, clock_id),
1222 timer_t timerid; local in function:timer_create1
1252 for (timerid = TIMER_MIN; timerid < TIMER_MAX; timerid++)
1253 if (pts->pts_timers[timerid] == NULL)
1255 if (timerid == TIMER_MAX) {
1274 pt->pt_ev.sigev_value.sival_int = timerid;
1291 pt->pt_entry = timerid;
1313 timer_t timerid; local in function:sys_timer_delete
1515 int timerid; local in function:sys_timer_getoverrun
    [all...]
  /src/sys/arch/usermode/usermode/
thunk.c 314 timer_t timerid; local in function:thunk_timer_attach
317 error = timer_create(CLOCK_MONOTONIC, NULL, &timerid);
323 return timerid;
327 thunk_timer_start(timer_t timerid, int freq)
335 return timer_settime(timerid, TIMER_RELTIME, &tim, NULL);
339 thunk_timer_getoverrun(timer_t timerid)
341 return timer_getoverrun(timerid);

Completed in 128 milliseconds