Changeset 52822 in vbox for trunk/src/VBox/Runtime/r0drv/nt/time-r0drv-nt.cpp
- Timestamp:
- Sep 23, 2014 10:25:34 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 96224
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/time-r0drv-nt.cpp
r48935 r52822 5 5 6 6 /* 7 * Copyright (C) 2007-201 0Oracle Corporation7 * Copyright (C) 2007-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 80 80 RTDECL(uint64_t) RTTimeMilliTS(void) 81 81 { 82 return rtTimeGetSystemNanoTS() / 1000000;82 return rtTimeGetSystemNanoTS() / RT_NS_1MS; 83 83 } 84 84 … … 92 92 RTDECL(uint64_t) RTTimeSystemMilliTS(void) 93 93 { 94 return rtTimeGetSystemNanoTS() / 1000000;94 return rtTimeGetSystemNanoTS() / RT_NS_1MS; 95 95 } 96 96
Note:
See TracChangeset
for help on using the changeset viewer.