| 265 | static gds_msg* global_default_msg = NULL; |
| 266 | |
| 267 | VoidPtr API_ROUTINE gds__alloc_debug(SLONG size_request, const TEXT* filename, ULONG lineno) |
| 268 | { |
| 269 | try |
| 270 | { |
| 271 | return getDefaultMemoryPool()->allocate(size_request |
| 272 | #ifdef DEBUG_GDS_ALLOC |
| 273 | , filename, lineno |
| 274 | #endif |
| 275 | ); |
| 276 | } |
| 277 | catch (const Firebird::Exception&) |
| 278 | { |
| 279 | return NULL; |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | ULONG API_ROUTINE gds__free(void* blk) |
| 284 | { |
nothing calls this directly
no test coverage detected