| 148 | } |
| 149 | |
| 150 | void DynamicsContext::resetThreadContexts() |
| 151 | { |
| 152 | PxcThreadCoherentCacheIterator<ThreadContext, PxcNpMemBlockPool> threadContextIt(mThreadContextPool); |
| 153 | ThreadContext* threadContext = threadContextIt.getNext(); |
| 154 | |
| 155 | while(threadContext != NULL) |
| 156 | { |
| 157 | threadContext->reset(); |
| 158 | threadContext = threadContextIt.getNext(); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | |
| 163 | // =========================== Basic methods |
no test coverage detected