| 303 | |
| 304 | #ifndef _MSC_VER |
| 305 | inline void VerifyMmapResult(void* result) { |
| 306 | if (Y_UNLIKELY(result == MAP_FAILED)) |
| 307 | NMalloc::AbortFromCorruptedAllocator("negative size requested? or just out of mem"); |
| 308 | } |
| 309 | #endif |
| 310 | |
| 311 | #if !defined(_MSC_VER) && !defined(_freebsd_) && defined(_64_) |
no test coverage detected