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

  /src/sys/arch/usermode/dev/
clock.c 133 struct thunk_timeval ttv; local in function:clock_todr_gettime
136 error = thunk_gettimeofday(&ttv, NULL);
140 tv->tv_sec = ttv.tv_sec;
141 tv->tv_usec = ttv.tv_usec;
  /src/sys/arch/usermode/usermode/
thunk.c 139 thunk_to_timeval(const struct thunk_timeval *ttv, struct timeval *tv)
141 tv->tv_sec = ttv->tv_sec;
142 tv->tv_usec = ttv->tv_usec;
146 thunk_from_timeval(const struct timeval *tv, struct thunk_timeval *ttv)
148 ttv->tv_sec = tv->tv_sec;
149 ttv->tv_usec = tv->tv_usec;

Completed in 12 milliseconds