From: Jeff Trawick Date: Wed, 25 Jul 2001 20:34:02 +0000 (+0000) Subject: fix some typos, add a comment X-Git-Tag: 2.0.22~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b4256883c783615a17b9502f52cc284fcd7b2c7;p=thirdparty%2Fapache%2Fhttpd.git fix some typos, add a comment git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89709 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/threaded/threaded.c b/server/mpm/threaded/threaded.c index 836ead8c8a2..4050e059b0d 100644 --- a/server/mpm/threaded/threaded.c +++ b/server/mpm/threaded/threaded.c @@ -705,8 +705,8 @@ static void *start_threads(apr_thread_t *thd, void * dummy) /* We are creating threads right now */ (void) ap_update_child_status(my_child_num, i, SERVER_STARTING, (request_rec *) NULL); - /* We let each thread update it's own scoreboard entry. This is - * done because it let's us deal with tid better. + /* We let each thread update its own scoreboard entry. This is + * done because it lets us deal with tid better. */ if ((rv = apr_thread_create(&threads[i], thread_attr, worker_thread, my_info, pchild))) { ap_log_error(APLOG_MARK, APLOG_ALERT, rv, ap_server_conf, @@ -722,7 +722,7 @@ static void *start_threads(apr_thread_t *thd, void * dummy) if (workers_may_exit || threads_created == ap_threads_per_child) { break; } - sleep(1); + sleep(1); /* wait for previous generation to clean up an entry */ } /* What state should this child_main process be listed as in the scoreboard...?