- Timestamp:
- Jul 6, 2016 11:02:33 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108510
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/snippets/time-1.c
r58153 r62043 72 72 { 73 73 #ifdef USE_CLOCK_MONOTONIC 74 printf("tv_nsec in the past: %ld.%09u < %ld.%09u - % dnsec\n",74 printf("tv_nsec in the past: %ld.%09u < %ld.%09u - %u nsec\n", 75 75 (long)pCur->tv_sec, (unsigned)pCur->tv_nsec, 76 76 (long)pPrev->tv_sec, (unsigned)pPrev->tv_nsec, 77 77 (unsigned)pPrev->tv_nsec - (unsigned)pCur->tv_nsec); 78 78 #else 79 printf("tv_usec in the past: %ld.%06u < %ld.%06u - % dusec\n",79 printf("tv_usec in the past: %ld.%06u < %ld.%06u - %u usec\n", 80 80 (long)pCur->tv_sec, (unsigned)pCur->tv_usec, 81 81 (long)pPrev->tv_sec, (unsigned)pPrev->tv_usec,
Note:
See TracChangeset
for help on using the changeset viewer.