| 121 | getIdTable_().AddThread_(tid, pid, name); |
| 122 | } |
| 123 | void AddProcess(uint32_t pid, std::string name) override |
| 124 | { |
| 125 | getIdTable_().AddProcess_(pid, name); |
| 126 | } |
| 127 | private: |
| 128 | std::function<IdentificationTable& ()> getIdTable_; |
| 129 | }; |
nothing calls this directly
no test coverage detected