| 157 | |
| 158 | public: |
| 159 | void addThread(void* (*wrapper)(void*), ThreadArg* arg, bool delete_arg = true) { |
| 160 | thread_list.push_back(new Thread(wrapper, arg, delete_arg, thread_list.size()+1)); |
| 161 | } |
| 162 | |
| 163 | const std::string& getName() const {return name;} |
| 164 |
no outgoing calls
no test coverage detected