| 36 | } // namespace NGT |
| 37 | |
| 38 | Thread::Thread() { |
| 39 | threadInfo = new ThreadInfo; |
| 40 | threadInfo->threadid = 0; |
| 41 | threadNo = -1; |
| 42 | isTerminate = false; |
| 43 | } |
| 44 | |
| 45 | Thread::~Thread() { |
| 46 | if (threadInfo != 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected