| 106 | }; |
| 107 | |
| 108 | void* startThread(void* obj) |
| 109 | { |
| 110 | ThreadData* data = static_cast<ThreadData*>(obj); |
| 111 | data->runInThread(); |
| 112 | delete data; |
| 113 | return NULL; |
| 114 | } |
| 115 | |
| 116 | } // namespace detail |
| 117 |
nothing calls this directly
no test coverage detected