| 46 | |
| 47 | |
| 48 | void Thread::start(Runnable& target) |
| 49 | { |
| 50 | if (isRunning()) |
| 51 | throw std::exception("thread already running"); |
| 52 | |
| 53 | _pRunnableTarget = ⌖ |
| 54 | |
| 55 | create(runnableEntry, this); |
| 56 | } |
| 57 | |
| 58 | |
| 59 | void Thread::start(Callable target, void* pData) |
no outgoing calls
no test coverage detected