You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2007/10/14 04:14:23 UTC

svn commit: r584471 - /apr/apr/trunk/test/testmutexscope.c

Author: wrowe
Date: Sat Oct 13 19:14:22 2007
New Revision: 584471

URL: http://svn.apache.org/viewvc?rev=584471&view=rev
Log:
Cure win32 ills, apr created threads must use apr_thread_exit.

Modified:
    apr/apr/trunk/test/testmutexscope.c

Modified: apr/apr/trunk/test/testmutexscope.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/testmutexscope.c?rev=584471&r1=584470&r2=584471&view=diff
==============================================================================
--- apr/apr/trunk/test/testmutexscope.c (original)
+++ apr/apr/trunk/test/testmutexscope.c Sat Oct 13 19:14:22 2007
@@ -96,6 +96,7 @@
     assert(apr_thread_mutex_lock(thread_mutex) == APR_SUCCESS);
     assert(apr_thread_mutex_unlock(thread_mutex) == APR_SUCCESS);
     lock_release(test_mode);
+    apr_thread_exit(id, 0);
     return NULL;
 }