Changeset 6677 in vbox for trunk/src/VBox/Runtime/common/time/timesup.cpp
- Timestamp:
- Jan 31, 2008 7:27:56 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/time/timesup.cpp
r5999 r6677 45 45 * Internal Functions * 46 46 *******************************************************************************/ 47 #if ndef IN_GUEST47 #if !defined(IN_GUEST) && !defined(RT_NO_GIP) 48 48 static DECLCALLBACK(void) rtTimeNanoTSInternalBitch(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS); 49 49 static DECLCALLBACK(uint64_t) rtTimeNanoTSInternalFallback(PRTTIMENANOTSDATA pData); … … 55 55 * Global Variables * 56 56 *******************************************************************************/ 57 #if ndef IN_GUEST57 #if !defined(IN_GUEST) && !defined(RT_NO_GIP) 58 58 /** The previous timestamp value returned by RTTimeNanoTS. */ 59 59 static uint64_t g_TimeNanoTSPrev = 0; … … 162 162 } 163 163 164 #endif /* !IN_GUEST */164 #endif /* !IN_GUEST && !RT_NO_GIP */ 165 165 166 166 … … 170 170 DECLINLINE(uint64_t) rtTimeNanoTSInternal(void) 171 171 { 172 #if ndef IN_GUEST172 #if !defined(IN_GUEST) && !defined(RT_NO_GIP) 173 173 return g_apfnWorkers[g_iWorker](&g_TimeNanoTSData); 174 174 #else … … 200 200 201 201 202 #if ndef IN_GUEST202 #if !defined(IN_GUEST) && !defined(RT_NO_GIP) 203 203 /** 204 204 * Debugging the time api. … … 243 243 return g_TimeNanoTSData.cUpdateRaces; 244 244 } 245 #endif 245 #endif /* !IN_GUEST && !RT_NO_GIP */
Note:
See TracChangeset
for help on using the changeset viewer.