Fix old typo in OS2_close_std_tqueue that was never noticed because
authorChris Hanson <org/chris-hanson/cph>
Sat, 22 Apr 1995 21:48:53 +0000 (21:48 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 22 Apr 1995 21:48:53 +0000 (21:48 +0000)
this procedure was never called.

v7/src/microcode/os2msg.c

index f94c826c6df6ea418d27bc3e15dc88243bccbdf4..9edfdd4d3231ab0c330c0ce4992b3c57af60d914 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: os2msg.c,v 1.7 1995/04/22 21:17:36 cph Exp $
+$Id: os2msg.c,v 1.8 1995/04/22 21:48:53 cph Exp $
 
 Copyright (c) 1994-95 Massachusetts Institute of Technology
 
@@ -554,7 +554,7 @@ void
 OS2_close_std_tqueue (tqueue_t * tqueue)
 {
   OS2_close_event_semaphore (STD_TQUEUE_EVENT (tqueue));
-  OS2_close_event_semaphore (STD_TQUEUE_MUTEX (tqueue));
+  OS2_close_mutex_semaphore (STD_TQUEUE_MUTEX (tqueue));
   while ((STD_TQUEUE_HEAD (tqueue)) != 0)
     {
       msg_list_t * this = (STD_TQUEUE_HEAD (tqueue));