rbb 01/09/19 08:09:16
Modified: locks/win32 thread_cond.c
Log:
Remove some debugging logic that I forgot about.
Submitted by: Greg Stein
Revision Changes Path
1.3 +0 -3 apr/locks/win32/thread_cond.c
Index: thread_cond.c
===================================================================
RCS file: /home/cvs/apr/locks/win32/thread_cond.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- thread_cond.c 2001/09/18 21:38:03 1.2
+++ thread_cond.c 2001/09/19 15:09:16 1.3
@@ -63,9 +63,6 @@
static apr_status_t thread_cond_cleanup(void *data)
{
apr_thread_cond_t *cond = data;
- if (cond->num_waiting != 0) {
- printf("somebody's waiting, but I'm closing it anyway.\n");
- }
CloseHandle(cond->mutex);
CloseHandle(cond->event);
return APR_SUCCESS;