blob: 5db25d3027006eb1557bf37867bc4f59092c93ad [file] [log] [blame]
Adam Snaiderc8b7e752023-09-14 14:27:53 -07001#include "aos/ipc_lib/shm_base.h"
2
Stephan Pleines682928d2024-05-31 20:43:48 -07003#include <string>
4
Adam Snaiderc8b7e752023-09-14 14:27:53 -07005DEFINE_string(shm_base, "/dev/shm/aos",
6 "Directory to place queue backing mmaped files in.");
7namespace aos::testing {
8void SetShmBase(const std::string_view base) {
9 FLAGS_shm_base = std::string(base) + "/aos";
10}
11} // namespace aos::testing