blob: 22bf915f40f2668b51850bc489938d7942f9f26f [file] [log] [blame]
Adam Snaiderc8b7e752023-09-14 14:27:53 -07001#include "aos/ipc_lib/shm_base.h"
2
3DEFINE_string(shm_base, "/dev/shm/aos",
4 "Directory to place queue backing mmaped files in.");
5namespace aos::testing {
6void SetShmBase(const std::string_view base) {
7 FLAGS_shm_base = std::string(base) + "/aos";
8}
9} // namespace aos::testing