| 35 | } |
| 36 | |
| 37 | virtual void TearDown() override { |
| 38 | ::munmap(region, REGION_SIZE); |
| 39 | ::close(fd); |
| 40 | ::unlink(file_name.c_str()); |
| 41 | } |
| 42 | |
| 43 | bool region_in_memory() { |
| 44 | ::std::vector<uint8_t> vec(CEILED_REGION_SIZE / PAGE_SIZE); |
nothing calls this directly
no outgoing calls
no test coverage detected