MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / ~PageSpace

Method ~PageSpace

src/jrd/pag.cpp:2149–2162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2147// Class PageSpace starts here
2148
2149PageSpace::~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
2164ULONG PageSpace::actAlloc()
2165{

Callers

nothing calls this directly

Calls 1

PIO_closeFunction · 0.50

Tested by

no test coverage detected