| 287 | #endif |
| 288 | |
| 289 | void SetSequential() { |
| 290 | #if defined(_unix_) |
| 291 | if (!(Mode_ & oNotGreedy) && Length_) { |
| 292 | MadviseSequentialAccess(PtrStart_, Length_); |
| 293 | } |
| 294 | #endif |
| 295 | } |
| 296 | |
| 297 | void Evict(void* ptr, size_t len) { |
| 298 | MadviseEvict(ptr, len); |
nothing calls this directly
no test coverage detected