From: Ruediger Pluem Date: Fri, 22 Feb 2008 23:05:37 +0000 (+0000) Subject: * Add hint to PR in comment. No functional change. X-Git-Tag: 2.3.0~941 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2735bedb6a05cc065f18c32b1570fd0cf9cb833b;p=thirdparty%2Fapache%2Fhttpd.git * Add hint to PR in comment. No functional change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630350 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/experimental/event/fdqueue.c b/server/mpm/experimental/event/fdqueue.c index 925241909a6..e9f5f5345d4 100644 --- a/server/mpm/experimental/event/fdqueue.c +++ b/server/mpm/experimental/event/fdqueue.c @@ -204,7 +204,7 @@ void ap_push_pool(fd_queue_info_t * queue_info, /* * Save queue_info->recycled_pool in local variable next because * new_recycle->next can be changed after apr_atomic_casptr - * function call. + * function call. For gory details see PR 44402. */ struct recycled_pool *next = queue_info->recycled_pools; new_recycle->next = next; diff --git a/server/mpm/worker/fdqueue.c b/server/mpm/worker/fdqueue.c index 951fafacabf..8a75d24d1ed 100644 --- a/server/mpm/worker/fdqueue.c +++ b/server/mpm/worker/fdqueue.c @@ -96,7 +96,7 @@ apr_status_t ap_queue_info_set_idle(fd_queue_info_t *queue_info, for (;;) { /* Save queue_info->recycled_pool in local variable next because * new_recycle->next can be changed after apr_atomic_casptr - * function call. + * function call. For gory details see PR 44402. */ struct recycled_pool *next = queue_info->recycled_pools; new_recycle->next = next;