costin      02/04/12 16:00:45

  Modified:    jk/native2/include jk_vm.h
  Log:
  Eliminate some crap from the vm stuff.
  
  The code got too complex in supporting JDK1.1 - which not supported
  in 4.0 anyway.
  
  If you want in-process worker with JDK1.1 - use mod_jk1 or write a
  separate jk object.
  
  Revision  Changes    Path
  1.3       +5 -33     jakarta-tomcat-connectors/jk/native2/include/jk_vm.h
  
  Index: jk_vm.h
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/include/jk_vm.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jk_vm.h   18 Mar 2002 17:56:40 -0000      1.2
  +++ jk_vm.h   12 Apr 2002 23:00:45 -0000      1.3
  @@ -84,48 +84,20 @@
       */
       void *jvm;   
   
  -    char *tomcat_classpath;
  -
       /* Full path to the jni javai/jvm dll
        */
       char *jvm_dll_path;
   
       /*
  -     * Initial Java heap size
  -     */
  -    unsigned tomcat_ms;
  -
  -    /*
  -     * Max Java heap size
  -     */
  -    unsigned tomcat_mx;
  -
  -    /*
  -     * Java system properties
  -     */
  -    char **sysprops;
  -
  -    /*
  -     * Java 2 initialization options (-X... , -verbose etc.)
  +     * All initialization options
        */
  -    char **java2opts;
  -
  -    /*
  -     * Java 2 lax/strict option checking (bool)
  -     */    
  -    int java2lax;
  +    char **options;
   
  -    /** Process the properties and set internal structures
  +    int nOptions;
  +    
  +    /** Create the VM, attach - don't execute anything
        */
       int (*init)(struct jk_env *env, struct jk_vm *p );
  -
  -    /** Load the java libs, prepare for openning.
  -     */
  -    int (*load)(struct jk_env *env, struct jk_vm *p );
  -
  -    /** Create the VM. 
  -     */
  -    int (*open)(struct jk_env *env, struct jk_vm *p );
   
       void *(*attach)(struct jk_env *env, struct jk_vm *p);
   
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to