aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/nativec/PosixFAdvise.java
blob: 0fdcbca5f14b33a87f2b0f7056ef9e9e7561b3fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.yahoo.nativec;

import com.sun.jna.LastErrorException;

/**
 * Gives access to the C library posix_fadvise() function.
 *
 * @author baldersheim
 */
public class PosixFAdvise {
    public static final int POSIX_FADV_DONTNEED = 4; // See /usr/include/linux/fadvise.h
    private final static Throwable initException = NativeC.loadLibrary(PosixFAdvise.class);
    public static Throwable init() {
        return initException;
    }
    public static native int posix_fadvise(int fd, long offset, long len, int flag) throws LastErrorException;
}