From: Cliff Woolley Date: Wed, 19 Sep 2001 06:34:11 +0000 (+0000) Subject: I was kinda hoping those (void)some_function() and (request_rec *)NULL X-Git-Tag: 2.0.26~219 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=93b99eb3d4d2cf451eed7812bc3d41d754922e32;p=thirdparty%2Fapache%2Fhttpd.git I was kinda hoping those (void)some_function() and (request_rec *)NULL casts would go away before this committed, but alas I didn't say anything. :-) This gets rid of them and a few others just like them that I also found in worker.c. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91082 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/worker/worker.c b/server/mpm/worker/worker.c index 67745f7425b..666d9449114 100644 --- a/server/mpm/worker/worker.c +++ b/server/mpm/worker/worker.c @@ -483,7 +483,7 @@ static void process_socket(apr_pool_t *p, apr_socket_t *sock, int my_child_num, long conn_id = AP_ID_FROM_CHILD_THREAD(my_child_num, my_thread_num); int csd; - (void) apr_os_sock_get(&csd, sock); + apr_os_sock_get(&csd, sock); if (csd >= FD_SETSIZE) { ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, 0, NULL, @@ -697,11 +697,9 @@ static void *worker_thread(apr_thread_t *thd, void * dummy) free(ti); - (void) ap_update_child_status(process_slot, thread_slot, - SERVER_STARTING, (request_rec *)NULL); + ap_update_child_status(process_slot, thread_slot, SERVER_STARTING, NULL); while (!workers_may_exit) { - (void) ap_update_child_status(process_slot, thread_slot, - SERVER_READY, (request_rec *)NULL); + ap_update_child_status(process_slot, thread_slot, SERVER_READY, NULL); rv = ap_queue_pop(worker_queue, &csd, &ptrans); /* We get FD_QUEUE_EINTR whenever ap_queue_pop() has been interrupted * from an explicit call to ap_queue_interrupt_all(). This allows @@ -778,8 +776,7 @@ static void *start_threads(apr_thread_t *thd, void *dummy) my_info->sd = 0; /* We are creating threads right now */ - (void) ap_update_child_status(my_child_num, i, SERVER_STARTING, - (request_rec *) NULL); + ap_update_child_status(my_child_num, i, SERVER_STARTING, NULL); /* We let each thread update its own scoreboard entry. This is * done because it lets us deal with tid better. */ @@ -947,7 +944,7 @@ static int make_child(server_rec *s, int slot) /* fork didn't succeed. Fix the scoreboard or else * it will say SERVER_STARTING forever and ever */ - (void) ap_update_child_status(slot, 0, SERVER_DEAD, (request_rec *) NULL); + ap_update_child_status(slot, 0, SERVER_DEAD, NULL); /* In case system resources are maxxed out, we don't want Apache running away with the CPU trying to fork over and