Go to the documentation of this file. 1 #ifndef FADVISE_H_INCLUDED
2 #define FADVISE_H_INCLUDED
4 #define POSIX_FADV_NORMAL 0
5 #define POSIX_FADV_RANDOM 1
6 #define POSIX_FADV_SEQUENTIAL 2
7 #define POSIX_FADV_WILLNEED 3
13 #if defined(__s390x__)
14 #define POSIX_FADV_DONTNEED 6
15 #define POSIX_FADV_NOREUSE 7
17 #define POSIX_FADV_DONTNEED 4
18 #define POSIX_FADV_NOREUSE 5