blob: 9a56d294186cd47685ff1cf40c80633e546249b4 [file] [log] [blame]
Adam Snaiderc8b7e752023-09-14 14:27:53 -07001#ifndef AOS_IPC_LIB_SHM_BASE_H_
2#define AOS_IPC_LIB_SHM_BASE_H_
3
Stephan Pleines682928d2024-05-31 20:43:48 -07004#include <string_view>
5
Austin Schuh99f7c6a2024-06-25 22:07:44 -07006#include "absl/flags/declare.h"
Adam Snaiderc8b7e752023-09-14 14:27:53 -07007
Austin Schuh99f7c6a2024-06-25 22:07:44 -07008ABSL_DECLARE_FLAG(std::string, shm_base);
Adam Snaiderc8b7e752023-09-14 14:27:53 -07009
10namespace aos::testing {
11void SetShmBase(const std::string_view base);
12}
Austin Schuh99f7c6a2024-06-25 22:07:44 -070013
Adam Snaiderc8b7e752023-09-14 14:27:53 -070014#endif // AOS_IPC_LIB_SHM_BASE_H_