dgaudet 98/08/07 08:35:54
Modified: src CHANGES
src/main http_main.c
Log:
fix os/2 mutex problem
Submitted by: Brian Havard
Revision Changes Path
1.1010 +2 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1009
retrieving revision 1.1010
diff -u -r1.1009 -r1.1010
--- CHANGES 1998/08/06 23:32:01 1.1009
+++ CHANGES 1998/08/07 15:35:45 1.1010
@@ -1,5 +1,7 @@
Changes with Apache 1.3.2
+ *) Fix a problem with the new OS/2 mutexes. [Brian Havard]
+
*) Enhance mod_spelling so that CheckSpelling can be used in
<Directory> containers and .htaccess files. [Ken Coar]
1.380 +1 -0 apache-1.3/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v
retrieving revision 1.379
retrieving revision 1.380
diff -u -r1.379 -r1.380
--- http_main.c 1998/08/06 17:30:29 1.379
+++ http_main.c 1998/08/07 15:35:49 1.380
@@ -845,6 +845,7 @@
static void accept_mutex_cleanup(void *foo)
{
+ DosReleaseMutexSem(lock_sem);
DosCloseMutexSem(lock_sem);
}