You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2001/12/31 20:04:59 UTC

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/apr AprImpl.java

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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>