| 108 | struct thread_base { |
| 109 | thread_base() : need_join(false), stack_size(256 * 1024) { } |
| 110 | virtual ~thread_base() { |
| 111 | join(); |
| 112 | } |
| 113 | virtual void run() = 0; |
| 114 | void start() { |
| 115 | if (!start_nothrow()) { |
nothing calls this directly
no outgoing calls
no test coverage detected