tv                234 ext/auxsys/auxsyslib.c struct timeval tv;
tv                235 ext/auxsys/auxsyslib.c int r; SCM_SYSCALL(r, gettimeofday(&tv, NULL));
tv                237 ext/auxsys/auxsyslib.c SCM_RESULT0 = tv.tv_sec;
tv                238 ext/auxsys/auxsyslib.c SCM_RESULT1 = tv.tv_usec;
tv                758 src/system.c       struct timeval tv;
tv                760 src/system.c       SCM_SYSCALL(r, gettimeofday(&tv, NULL));
tv                762 src/system.c       return Scm_MakeTime(SCM_SYM_TIME_UTC, (long)tv.tv_sec, (long)tv.tv_usec*1000);