| 187 | } |
| 188 | |
| 189 | ThreadImpl::ThreadImpl() |
| 190 | { |
| 191 | getThread(this)->thread = NULL; |
| 192 | getThread(this)->state = _ThreadImpl::NotStarted; |
| 193 | getThread(this)->quitNow = 0; |
| 194 | getThread(this)->fn = NULL; |
| 195 | getThread(this)->arg = NULL; |
| 196 | getThread(this)->affinityMask = 0; |
| 197 | getThread(this)->name = NULL; |
| 198 | } |
| 199 | |
| 200 | ThreadImpl::ThreadImpl(ExecuteFn fn, void* arg, const char* name) |
| 201 | { |
nothing calls this directly
no test coverage detected