| 86 | } |
| 87 | |
| 88 | struct record_value { |
| 89 | mutex lock; |
| 90 | bool deleted; |
| 91 | bool unknown_state; |
| 92 | std::string key; |
| 93 | std::vector<std::string> values; |
| 94 | record_value() : deleted(true), unknown_state(false) { } |
| 95 | }; |
| 96 | |
| 97 | struct hs_longrun_shared { |
| 98 | config conf; |
nothing calls this directly
no outgoing calls
no test coverage detected