Changeset 72863 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Jul 4, 2018 10:13:40 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123408
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/init.cpp
r71282 r72863 107 107 */ 108 108 DECLHIDDEN(uint64_t) g_u64ProgramStartNanoTS; 109 110 /**111 * Program start microsecond TS.112 */113 DECLHIDDEN(uint64_t) g_u64ProgramStartMicroTS;114 115 /**116 * Program start millisecond TS.117 */118 DECLHIDDEN(uint64_t) g_u64ProgramStartMilliTS;119 109 120 110 /** … … 470 460 471 461 /* 472 * Init the program start TSes.462 * Init the program start timestamp TS. 473 463 * Do that here to be sure that the GIP time was properly updated the 1st time. 474 464 */ 475 465 g_u64ProgramStartNanoTS = RTTimeNanoTS(); 476 g_u64ProgramStartMicroTS = g_u64ProgramStartNanoTS / 1000;477 g_u64ProgramStartMilliTS = g_u64ProgramStartNanoTS / 1000000;478 466 479 467 /*
Note:
See TracChangeset
for help on using the changeset viewer.