Changeset 16332 in vbox for trunk/src/VBox/Runtime/r0drv/darwin/time-r0drv-darwin.cpp
- Timestamp:
- Jan 28, 2009 8:27:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/time-r0drv-darwin.cpp
r16331 r16332 62 62 63 63 64 /**65 * Gets the current nanosecond timestamp.66 *67 * @returns nanosecond timestamp.68 */69 64 RTDECL(uint64_t) RTTimeNanoTS(void) 70 65 { … … 73 68 74 69 75 /**76 * Gets the current millisecond timestamp.77 *78 * @returns millisecond timestamp.79 */80 70 RTDECL(uint64_t) RTTimeMilliTS(void) 81 71 { … … 84 74 85 75 86 /**87 * Gets the current nanosecond timestamp.88 *89 * This differs from RTTimeNanoTS in that it will use system APIs and not do any90 * resolution or performance optimizations.91 *92 * @returns nanosecond timestamp.93 */94 76 RTDECL(uint64_t) RTTimeSystemNanoTS(void) 95 77 { … … 98 80 99 81 100 /**101 * Gets the current millisecond timestamp.102 *103 * This differs from RTTimeNanoTS in that it will use system APIs and not do any104 * resolution or performance optimizations.105 *106 * @returns millisecond timestamp.107 */108 82 RTDECL(uint64_t) RTTimeSystemMilliTS(void) 109 83 { … … 112 86 113 87 114 /**115 * Gets the current system time.116 *117 * @returns pTime.118 * @param pTime Where to store the time.119 */120 88 RTDECL(PRTTIMESPEC) RTTimeNow(PRTTIMESPEC pTime) 121 89 {
Note:
See TracChangeset
for help on using the changeset viewer.