Adam Snaider | c8b7e75 | 2023-09-14 14:27:53 -0700 | [diff] [blame^] | 1 | #include "aos/ipc_lib/shm_base.h" |
2 | |||||
3 | DEFINE_string(shm_base, "/dev/shm/aos", | ||||
4 | "Directory to place queue backing mmaped files in."); | ||||
5 | namespace aos::testing { | ||||
6 | void SetShmBase(const std::string_view base) { | ||||
7 | FLAGS_shm_base = std::string(base) + "/aos"; | ||||
8 | } | ||||
9 | } // namespace aos::testing |