| 75 | }; |
| 76 | |
| 77 | struct MountPropagation { |
| 78 | PropagationType type = PropagationType::UNKNOWN; |
| 79 | int id = -1; |
| 80 | }; |
| 81 | |
| 82 | static const std::unordered_map<std::string, MountFlags> mountFlags = { |
| 83 | {"ro", MountFlags::RO}, {"rw", MountFlags::RW}, {"noexec", MountFlags::NOEXEC}, |
nothing calls this directly
no outgoing calls
no test coverage detected