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

  /src/usr.bin/script/
script.c 441 struct timespec tsi, tso; local in function:playback
479 tsi = tso;
496 tsi.tv_sec = tso.tv_sec - tsi.tv_sec;
497 tsi.tv_nsec = tso.tv_nsec - tsi.tv_nsec;
498 if (tsi.tv_nsec < 0) {
499 tsi.tv_sec -= 1;
500 tsi.tv_nsec += 1000000000;
503 (void)nanosleep(&tsi, NULL)
    [all...]
script.c 441 struct timespec tsi, tso; local in function:playback
479 tsi = tso;
496 tsi.tv_sec = tso.tv_sec - tsi.tv_sec;
497 tsi.tv_nsec = tso.tv_nsec - tsi.tv_nsec;
498 if (tsi.tv_nsec < 0) {
499 tsi.tv_sec -= 1;
500 tsi.tv_nsec += 1000000000;
503 (void)nanosleep(&tsi, NULL)
    [all...]

Completed in 20 milliseconds