ianh 2002/09/06 16:51:56
Modified: misc apr_queue.c
Log:
clean up a comment
Revision Changes Path
1.4 +2 -3 apr-util/misc/apr_queue.c
Index: apr_queue.c
===================================================================
RCS file: /home/cvs/apr-util/misc/apr_queue.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- apr_queue.c 19 Aug 2002 16:37:45 -0000 1.3
+++ apr_queue.c 6 Sep 2002 23:51:56 -0000 1.4
@@ -127,9 +127,8 @@
{
apr_queue_t *queue = data;
- /* Ignore errors here, we can't do anything about them anyway.
- * XXX: We should at least try to signal an error here, it is
- * indicative of a programmer error. -aaron */
+ /* Ignore errors here, we can't do anything about them anyway. */
+
apr_thread_cond_destroy(queue->not_empty);
apr_thread_cond_destroy(queue->not_full);
apr_thread_mutex_destroy(queue->one_big_mutex);