]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Add markers for non-threadsafe calls which need porting.
authorColm MacCarthaigh <colm@apache.org>
Sat, 14 Jan 2006 12:53:04 +0000 (12:53 +0000)
committerColm MacCarthaigh <colm@apache.org>
Sat, 14 Jan 2006 12:53:04 +0000 (12:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/execd-dev@369017 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_ext_filter.c
modules/mappers/mod_rewrite.c
modules/metadata/mod_mime_magic.c
modules/ssl/ssl_util.c

index c4f7fe4a2eed9d72ef449b738688c3b2c946f403..807a43f13a45eba639c36ad57058fdabbf79b7b7 100644 (file)
@@ -414,6 +414,8 @@ static apr_status_t init_ext_filter_process(ap_filter_t *f)
     ef_dir_t *dc = ctx->dc;
     const char * const *env;
 
+    /* XXX TODO: port to execd calls */    
+
     ctx->proc = apr_pcalloc(ctx->p, sizeof(*ctx->proc));
 
     rc = apr_procattr_create(&ctx->procattr, ctx->p);
index 9e094b33a6ab7eed414e8a9e186e948c94220879..bbbc716e2df8f1e2f0279ac3cf992b8064961660 100644 (file)
@@ -1139,6 +1139,8 @@ static apr_status_t rewritemap_program_child(apr_pool_t *p,
     apr_procattr_t *procattr;
     apr_proc_t *procnew;
 
+    /* XXX TODO: port to execd calls */
+
     if (   APR_SUCCESS == (rc=apr_procattr_create(&procattr, p))
         && APR_SUCCESS == (rc=apr_procattr_io_set(procattr, APR_FULL_BLOCK,
                                                   APR_FULL_BLOCK, APR_NO_PIPE))
index b02c1876a19301f4ba705be978feac283ba4264a..a5510c77af05de3ad6722d7232d03acec5912bf5 100644 (file)
@@ -2127,8 +2127,10 @@ static int create_uncompress_child(struct uncompress_parms *parm, apr_pool_t *cn
     apr_procattr_t *procattr;
     apr_proc_t *procnew;
 
+    /* XXX TODO: port to execd calls */    
+    
     /* XXX missing 1.3 logic:
-     *
+     * 
      * what happens when !compr[parm->method].silent?
      * Should we create the err pipe, read it, and copy to the log?
      */
index 92289bdd021fea7d7a6f8bf26a655ba772fede6d..13fddbfea9758831bbd1448f3bad0d22b480ce19 100644 (file)
@@ -66,6 +66,8 @@ apr_file_t *ssl_util_ppopen(server_rec *s, apr_pool_t *p, const char *cmd,
     apr_procattr_t *procattr;
     apr_proc_t *proc;
 
+    /* XXX TODO: port to execd calls */
+
     if (apr_procattr_create(&procattr, p) != APR_SUCCESS)
         return NULL;
     if (apr_procattr_io_set(procattr, APR_FULL_BLOCK, APR_FULL_BLOCK,