| 259 | } |
| 260 | |
| 261 | bool ThreadImpl::waitForQuit() |
| 262 | { |
| 263 | if(getThread(this)->state == _ThreadImpl::NotStarted) |
| 264 | return false; |
| 265 | |
| 266 | WaitForSingleObject(getThread(this)->thread, INFINITE); |
| 267 | return true; |
| 268 | } |
| 269 | |
| 270 | bool ThreadImpl::quitIsSignalled() |
| 271 | { |
nothing calls this directly
no test coverage detected