| 162 | |
| 163 | |
| 164 | void PIO_close(jrd_file* main_file) |
| 165 | { |
| 166 | /************************************** |
| 167 | * |
| 168 | * P I O _ c l o s e |
| 169 | * |
| 170 | ************************************** |
| 171 | * |
| 172 | * Functional description |
| 173 | * |
| 174 | **************************************/ |
| 175 | for (jrd_file* file = main_file; file; file = file->fil_next) |
| 176 | { |
| 177 | maybeCloseFile(file->fil_desc); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | |
| 182 | jrd_file* PIO_create(thread_db* tdbb, const Firebird::PathName& string, |
nothing calls this directly
no test coverage detected