costin 02/05/23 21:35:17 Modified: jk/native2/include jk_workerEnv.h Log: Added the dispatch code for mutex. As mentioned in the comment, a dynamic mechanism to handle IDs and allow use of names must be added ( someday ). Unless we switch to XPCOM or a similar object model first. At this moment I don't have any urge to compile IDLs, and the overhead seems too big, we can still keep it simple. Revision Changes Path 1.23 +6 -3 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.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- jk_workerEnv.h 16 May 2002 20:49:53 -0000 1.22 +++ jk_workerEnv.h 24 May 2002 04:35:17 -0000 1.23 @@ -58,7 +58,7 @@ /*************************************************************************** * Description: Workers controller header file * * Author: Gal Shachor <[EMAIL PROTECTED]> * - * Version: $Revision: 1.22 $ * + * Version: $Revision: 1.23 $ * ***************************************************************************/ #ifndef JK_WORKERENV_H @@ -118,11 +118,14 @@ /* Dispatcher for jni channel ( JNI -> web server ) */ #define JK_HANDLE_JNI_DISPATCH 0x15 -/* Dispatcher for shm ( JNI -> web server ) */ +/* Dispatcher for shm object ( java->C) */ #define JK_HANDLE_SHM_DISPATCH 0x16 -/* Dispatcher for unix socket channel ( JNI -> web server ) */ +/* Dispatcher for unix socket channel ( java->C )*/ #define JK_HANDLE_UN_DISPATCH 0x17 + +/* Dispatcher for mutex object ( java->C ) */ +#define JK_HANDLE_MUTEX_DISPATCH 0x18 /*
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>