1 17 18 package org.apache.tomcat.jni; 19 20 25 26 public class Mmap { 27 28 public static final int APR_MMAP_READ = 1; 29 30 public static final int APR_MMAP_WRITE = 2; 31 32 33 46 public static native long create(long file, long offset, long size, int flag, long pool) 47 throws Error ; 48 49 55 public static native long dup(long mmap, long pool) 56 throws Error ; 57 58 62 public static native int delete(long mm); 63 64 70 public static native long offset(long mm, long offset) 71 throws Error ; 72 73 } 74 | Popular Tags |