| 279 | } |
| 280 | |
| 281 | void ThreadImpl::kill() |
| 282 | { |
| 283 | if(getThread(this)->state == _ThreadImpl::Started) |
| 284 | TerminateThread(getThread(this)->thread, 0); |
| 285 | getThread(this)->state = _ThreadImpl::Stopped; |
| 286 | } |
| 287 | |
| 288 | void ThreadImpl::sleep(uint32_t ms) |
| 289 | { |
nothing calls this directly
no test coverage detected