Deallocate all resources associated with the thread. Should be called in the context of the spawning thread. */
| 244 | context of the spawning thread. |
| 245 | */ |
| 246 | virtual ~ThreadT() |
| 247 | { |
| 248 | mImpl->~ThreadImpl(); |
| 249 | Alloc::deallocate(mImpl); |
| 250 | } |
| 251 | |
| 252 | /** |
| 253 | start the thread running. Called in the context of the spawning thread. |
nothing calls this directly
no test coverage detected