Enum
advice
File or memory access pattern advisory information.
enum advice {
normal,
sequential,
random,
will-need,
dont-need,
no-reuse,
}Cases
| Case | Description |
|---|---|
| normal | The application has no advice to give on its behavior with respect to the specified data. |
| sequential | The application expects to access the specified data sequentially from lower offsets to higher offsets. |
| random | The application expects to access the specified data in a random order. |
| will-need | The application expects to access the specified data in the near future. |
| dont-need | The application expects that it will not access the specified data in the near future. |
| no-reuse | The application expects to access the specified data once and then not reuse it thereafter. |