| 23 | return std::format("{}_{}_sys", prefix_, salt_); |
| 24 | } |
| 25 | std::string ShmNamer::MakeGpuName(uint32_t deviceId) const |
| 26 | { |
| 27 | return std::format("{}_{}_gpu_{}", prefix_, salt_, deviceId); |
| 28 | } |
| 29 | std::string ShmNamer::MakeFrameName(uint32_t pid) const |
| 30 | { |
| 31 | return std::format("{}_{}_tgt_{}", prefix_, salt_, pid); |
no outgoing calls