costin      02/04/10 16:48:03

  Modified:    jk/native2/include jk_workerEnv.h
  Log:
  Added a pointer to the shm object.
  
  Note that the 'shm' doesn't depend directly on APR or shared memory availability.
  Other implementations are possible to support 'strange' OSes or
  workarounds, or 'native' libraries.
  
  For what we need it may not even be necesary to use shared memory -
  another form of IPC could also work as long as it allow some way to
  keep some data in (relative) sync among processes.
  
  Revision  Changes    Path
  1.14      +3 -1      jakarta-tomcat-connectors/jk/native2/include/jk_workerEnv.h
  
  Index: jk_workerEnv.h
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/include/jk_workerEnv.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- jk_workerEnv.h    18 Mar 2002 17:56:40 -0000      1.13
  +++ jk_workerEnv.h    10 Apr 2002 23:48:03 -0000      1.14
  @@ -58,7 +58,7 @@
   /***************************************************************************
    * Description: Workers controller header file                             *
    * Author:      Gal Shachor <[EMAIL PROTECTED]>                           * 
  - * Version:     $Revision: 1.13 $                                           *
  + * Version:     $Revision: 1.14 $                                           *
    ***************************************************************************/
   
   #ifndef JK_WORKERENV_H
  @@ -73,6 +73,7 @@
   #include "jk_uriEnv.h"
   #include "jk_handler.h"
   #include "jk_service.h"
  +#include "jk_shm.h"
   #include "jk_vm.h"
   
   #ifdef __cplusplus
  @@ -187,6 +188,7 @@
       struct jk_map * envvars;
   
       struct jk_config *config;
  +    struct jk_shm *shm;
       
       /* Handlers. This is a dispatch table for messages, for
        * each message id we have an entry containing the jk_handler_t.
  
  
  

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

Reply via email to