costin 01/12/31 11:04:59 Added: jk/java/org/apache/jk/apr AprImpl.java Log: Nothing inside yet, just the skeleton. This will have the native methods coresponding to the JNI code, needed to implement pipes, signals, etc. Revision Changes Path 1.1 jakarta-tomcat-connectors/jk/java/org/apache/jk/apr/AprImpl.java Index: AprImpl.java =================================================================== package org.apache.jk.apr; /** Implements the interface with the APR library. This is for internal-use * only. The goal is to use 'natural' mappings for user code - for example * java.net.Socket for unix-domain sockets, etc. * */ public class AprImpl { private native void initApr(); private void loadNative() { } /** Temp - testing only, will be moved to separate file */ public void main(String args[] ) { } }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>