| 211 | } |
| 212 | |
| 213 | ThreadImpl::~ThreadImpl() |
| 214 | { |
| 215 | if(getThread(this)->state == _ThreadImpl::Started) |
| 216 | kill(); |
| 217 | CloseHandle(getThread(this)->thread); |
| 218 | } |
| 219 | |
| 220 | void ThreadImpl::start(uint32_t stackSize, Runnable* runnable) |
| 221 | { |
nothing calls this directly
no test coverage detected