| 95 | }; |
| 96 | |
| 97 | struct hs_longrun_shared { |
| 98 | config conf; |
| 99 | socket_args arg; |
| 100 | int verbose; |
| 101 | long num_threads; |
| 102 | int usleep; |
| 103 | volatile mutable int running; |
| 104 | auto_ptrcontainer< std::vector<record_value *> > records; |
| 105 | hs_longrun_shared() : verbose(0), num_threads(0), usleep(0), running(1) { } |
| 106 | }; |
| 107 | |
| 108 | struct thread_base { |
| 109 | thread_base() : need_join(false), stack_size(256 * 1024) { } |
nothing calls this directly
no outgoing calls
no test coverage detected