You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2015/03/05 15:35:39 UTC

svn commit: r1664358 - /httpd/httpd/trunk/server/mpm/motorz/motorz.c

Author: jim
Date: Thu Mar  5 14:35:39 2015
New Revision: 1664358

URL: http://svn.apache.org/r1664358
Log:
Don't return

Modified:
    httpd/httpd/trunk/server/mpm/motorz/motorz.c

Modified: httpd/httpd/trunk/server/mpm/motorz/motorz.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/motorz/motorz.c?rev=1664358&r1=1664357&r2=1664358&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/motorz/motorz.c (original)
+++ httpd/httpd/trunk/server/mpm/motorz/motorz.c Thu Mar  5 14:35:39 2015
@@ -116,12 +116,11 @@ static void *motorz_io_setup_conn(apr_th
         ap_log_error(APLOG_MARK, APLOG_DEBUG, status, ap_server_conf, APLOGNO()
                      "motorz_io_setup_conn: motorz_io_process failed (?)");
     }
-    
-    return NULL;
 }
 
 static apr_status_t motorz_io_user(motorz_core_t *mz, motorz_sb_t *sb)
 {
+    /* TODO */
     return APR_SUCCESS;
 }
 
@@ -169,8 +168,6 @@ static void *motorz_timer_invoke(apr_thr
     motorz_timer_t *ep = (motorz_timer_t *)baton;
     
     motorz_timer_run(ep);
-    
-    return NULL;
 }
 
 static void *motorz_io_invoke(apr_thread_t * thread, void *baton)
@@ -187,8 +184,6 @@ static void *motorz_io_invoke(apr_thread
         ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, ap_server_conf, APLOGNO()
                      "motorz_io_invoke: motorz_io_process failed (?)");
     }
-    
-    return NULL;
 }
 
 static apr_status_t motorz_io_event_process(motorz_core_t *mz, motorz_sb_t *sb)