1 17 18 package org.apache.tomcat.jni; 19 20 25 26 public class Procattr { 27 28 33 public static native long create(long cont) 34 throws Error ; 35 36 44 public static native int ioSet(long attr, int in, int out, int err); 45 58 public static native int childInSet(long attr, long in, long parent); 59 60 71 public static native int childOutSet(long attr, long out, long parent); 72 73 84 public static native int childErrSet(long attr, long err, long parent); 85 86 93 public static native int dirSet(long attr, String dir); 94 95 106 public static native int cmdtypeSet(long attr, int cmd); 107 108 113 public static native int detachSet(long attr, int detach); 114 115 128 public static native int errorCheckSet(long attr, int chk); 129 130 137 public static native int addrspaceSet(long attr, int addrspace); 138 139 152 public static native void errfnSet(long attr, long pool, Object o); 153 154 162 public static native int userSet(long attr, String username, String password); 163 164 169 public static native int groupSet(long attr, String groupname); 170 171 172 } 173 | Popular Tags |