1 /* 2 * This file is auto-generated. Modifications will be lost. 3 * 4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5 * for more information. 6 */ 7 #ifndef FADVISE_H_INCLUDED 8 #define FADVISE_H_INCLUDED 9 #define POSIX_FADV_NORMAL 0 10 #define POSIX_FADV_RANDOM 1 11 #define POSIX_FADV_SEQUENTIAL 2 12 #define POSIX_FADV_WILLNEED 3 13 #ifdef __s390x__ 14 #define POSIX_FADV_DONTNEED 6 15 #define POSIX_FADV_NOREUSE 7 16 #else 17 #define POSIX_FADV_DONTNEED 4 18 #define POSIX_FADV_NOREUSE 5 19 #endif 20 #endif 21