| 229 | } |
| 230 | |
| 231 | void DeterministicTimer::startThreadedDelay() |
| 232 | { |
| 233 | ThreadInfo* thread = ThreadManager::getCurrentThread(); |
| 234 | |
| 235 | if (isInsideFrameBoundary()) { |
| 236 | thread->startingFrameDelay = 0; |
| 237 | return; |
| 238 | } |
| 239 | |
| 240 | thread->startingFrameDelay = framecount; |
| 241 | } |
| 242 | |
| 243 | void DeterministicTimer::endThreadedDelay(struct timespec delayTicks) |
| 244 | { |
no outgoing calls
no test coverage detected