Changeset 18634 in vbox for trunk/src/VBox
- Timestamp:
- Apr 2, 2009 12:47:58 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45551
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r18320 r18634 5 5 6 6 /* 7 * Copyright (C) 200 7Sun Microsystems, Inc.7 * Copyright (C) 2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 96 96 RTPrintf("\n" 97 97 "Options:\n" 98 #if !defined(RT_OS_WINDOWS) 98 99 " -f | --foreground Don't daemonzie the program. For debugging.\n" 100 #endif 99 101 " -v | --verbose Increment the verbosity level. For debugging.\n" 100 102 " -i | --interval The default interval.\n" … … 107 109 } 108 110 RTPrintf("\n" 109 " Copyright (C) 200 8Sun Microsystems, Inc.\n");111 " Copyright (C) 2009 Sun Microsystems, Inc.\n"); 110 112 111 113 return 1; … … 368 370 return VBoxServiceError("VbglR3Init failed with rc=%Rrc.\n", rc); 369 371 372 #if !defined(RT_OS_WINDOWS) 370 373 /* 371 374 * Daemonize if requested. … … 379 382 /* in-child */ 380 383 } 384 #endif 381 385 382 386 /** @todo Make the main thread responsive to signal so it can shutdown/restart the threads on non-SIGKILL signals. */ -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceTimeSync.cpp
r8155 r18634 232 232 { 233 233 /* 234 * The drift is to big, we have to make adjustments. :-/234 * The drift is too big, we have to make adjustments. :-/ 235 235 * If we've got adjtime around, try that first - most 236 236 * *NIX systems have it. Fall back on settimeofday. 237 237 */ 238 238 #ifdef RT_OS_WINDOWS 239 /* just make sure it compiles for now, but later:239 /* Just make sure it compiles for now, but later: 240 240 SetSystemTimeAdjustment and fall back on SetSystemTime. 241 241 */
Note:
See TracChangeset
for help on using the changeset viewer.