You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2002/10/15 15:59:29 UTC

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_vm.h

mturk       2002/10/15 06:59:29

  Modified:    jk/native2/include jk_vm.h
  Log:
  Add the classpath option to the vm:
  
  Revision  Changes    Path
  1.5       +8 -1      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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- jk_vm.h	1 Jul 2002 15:42:52 -0000	1.4
  +++ jk_vm.h	15 Oct 2002 13:59:28 -0000	1.5
  @@ -70,6 +70,7 @@
   #include "jk_service.h"
   #include "jk_map.h"
   
  +#define JK2_MAXOPTIONS  64
   struct jk_vm {
       struct jk_bean *mbean;
       
  @@ -91,10 +92,16 @@
       /*
        * All initialization options
        */
  -    char **options;
  +    char *options[JK2_MAXOPTIONS];
  +
  +    /*
  +     * -Djava.class.path options
  +     */
  +    char *classpath[JK2_MAXOPTIONS];
   
       int nOptions;
       
  +    int nClasspath;
       /** Create the VM, attach - don't execute anything
        */
       int (*init)(struct jk_env *env, struct jk_vm *p );
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>