- Timestamp:
- Jul 2, 2009 1:52:50 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceTimeSync.cpp
r21160 r21162 77 77 * -# g_TimesyncMaxLatency - When to start discarding the data as utterly 78 78 * useless and take a rest (someone is too busy to give us good data). 79 * /80 81 79 * -# g_TimeSyncSetThreshold - The threshold at which we will just set the time 80 * instead of trying to adjust it (milliseconds). 81 */ 82 82 83 83 /******************************************************************************* … … 85 85 *******************************************************************************/ 86 86 #ifdef RT_OS_WINDOWS 87 # include < windows.h>88 # include <winbase.h> 87 # include <Windows.h> 88 # include <winbase.h> /** @todo r=bird: Why is this here? Windows.h should include winbase.h... */ 89 89 #else 90 90 # include <unistd.h> … … 124 124 /** @see pg_vboxservice_timesync */ 125 125 static uint32_t g_TimeSyncMaxLatency = 250; 126 /** The threshold at which we will just set the time instead of trying to 127 * adjust it. Milliseconds. */ 126 /** @see pg_vboxservice_timesync */ 128 127 static uint32_t g_TimeSyncSetThreshold = 20*60*1000; 129 128 /** Whether the next adjustment should just set the time instead of trying to
Note:
See TracChangeset
for help on using the changeset viewer.