Changeset 5463 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Oct 24, 2007 3:11:06 AM (17 years ago)
- Location:
- trunk/src/VBox/Runtime/common/time
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/time/timesup.cpp
r5461 r5463 56 56 /* .pfnBad = */ rtTimeNanoTSInternalBitch, 57 57 /* .pfnRediscover = */ rtTimeNanoTSInternalRediscover, 58 /* .pvDummy = */ NULL, 58 59 /* .c1nsSteps = */ 0, 59 60 /* .cExpired = */ 0, … … 115 116 return rtTimeNanoTSInternalRediscover(pData); 116 117 NOREF(pData); 118 #if defined(IN_RING3) /** @todo Add ring-0 RTTimeSystemNanoTS to all hosts. */ 117 119 return RTTimeSystemNanoTS(); 120 #else 121 return 0; 122 #endif 118 123 } 119 124 -
trunk/src/VBox/Runtime/common/time/timesupA.asm
r5461 r5463 28 28 .pfnBad RTCCPTR_RES 1 29 29 .pfnRediscover RTCCPTR_RES 1 30 .pvDummy RTCCPTR_RES 1 30 31 .c1nsSteps resd 1 31 32 .cExpired resd 1
Note:
See TracChangeset
for help on using the changeset viewer.