clar 2004/06/11 13:13:19
Modified: include apr_thread_proc.h
Log:
Added NetWare specific option in apr_cmdtype_e to start program in a separate
address space for cmdtype field in apr_procattr_t struct
Revision Changes Path
1.106 +7 -4 apr/include/apr_thread_proc.h
Index: apr_thread_proc.h
===================================================================
RCS file: /home/cvs/apr/include/apr_thread_proc.h,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- apr_thread_proc.h 10 Jun 2004 10:57:24 -0000 1.105
+++ apr_thread_proc.h 11 Jun 2004 20:13:19 -0000 1.106
@@ -42,10 +42,13 @@
*/
typedef enum {
- APR_SHELLCMD, /**< use the shell to invoke the program */
- APR_PROGRAM, /**< invoke the program directly, no copied env */
- APR_PROGRAM_ENV, /**< invoke the program, replicating our environment
*/
- APR_PROGRAM_PATH /**< find program on PATH, use our environment */
+#ifdef NETWARE
+ APR_PROGRAM_ADDRSPACE, /**< invoke the program in its own address space
*/
+#endif
+ APR_SHELLCMD, /**< use the shell to invoke the program */
+ APR_PROGRAM, /**< invoke the program directly, no copied env
*/
+ APR_PROGRAM_ENV, /**< invoke the program, replicating our
environment */
+ APR_PROGRAM_PATH /**< find program on PATH, use our environment */
} apr_cmdtype_e;
typedef enum {