| 127 | } |
| 128 | |
| 129 | uint64 Plat_USTime() |
| 130 | { |
| 131 | // We subtract off the tick base to keep the diff as small |
| 132 | // as possible so that our conversion math is more accurate. |
| 133 | uint64 Ticks = Plat_RelativeTicks(); // NOTE: inits globals |
| 134 | return (uint64)( (Ticks - g_TickBase) * g_TicksToUS ); |
| 135 | } |
| 136 | |
| 137 | END_TIER0_NAMESPACE |