| 2147 | // Class PageSpace starts here |
| 2148 | |
| 2149 | PageSpace::~PageSpace() |
| 2150 | { |
| 2151 | if (file) |
| 2152 | { |
| 2153 | PIO_close(file); |
| 2154 | |
| 2155 | while (file) |
| 2156 | { |
| 2157 | jrd_file* next = file->fil_next; |
| 2158 | delete file; |
| 2159 | file = next; |
| 2160 | } |
| 2161 | } |
| 2162 | } |
| 2163 | |
| 2164 | ULONG PageSpace::actAlloc() |
| 2165 | { |
nothing calls this directly
no test coverage detected