WinWorkstation.st
changeset 4364 76cd52d9ef16
parent 4363 d7a017ae1487
child 4366 8d7e9227961d
--- a/WinWorkstation.st	Mon Mar 14 22:08:53 2005 +0100
+++ b/WinWorkstation.st	Mon Mar 14 22:33:44 2005 +0100
@@ -1776,12 +1776,12 @@
 
 static int
 lockEvents() {
-    DWORD dwWaitResult = WaitForSingleObject(hEventsMutex, 1000L);
+    DWORD dwWaitResult = WaitForSingleObject(hEventsMutex, 2000L);
 
 #ifdef LOCK_DEBUG
     lockCountEvents++;
     if (lockCountEvents != 1) {
-	fprintf(stderr, "WinWorkstation [info]: lockCountEvents (%d) != 1\n", lockCountEvents);
+	fprintf(stderr, "WinWorkstation [warning]: lockCountEvents (%d) != 1\n", lockCountEvents);
 	lockCountEvents = 1;
     }
 #endif
@@ -1802,13 +1802,13 @@
 #ifdef LOCK_DEBUG
     lockCountEvents--;
     if (lockCountEvents != 0) {
-	fprintf(stderr, "WinWorkstation [info]: lockCountEvents (%d) != 0\n", lockCountEvents);
+	fprintf(stderr, "WinWorkstation [warning]: lockCountEvents (%d) != 0\n", lockCountEvents);
 	lockCountEvents = 0;
     }
 #endif
     if (! ReleaseMutex(hEventsMutex)) {
        /* Deal with error. */
-       fprintf(stderr, "WinWorkstation [info]: unlockEvent rrror\n");
+       fprintf(stderr, "WinWorkstation [info]: unlockEvent error\n");
        return (FALSE);
     }
     return (TRUE);
@@ -16429,7 +16429,7 @@
 !WinWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.298 2005-03-14 21:08:53 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.299 2005-03-14 21:33:44 penk Exp $'
 ! !
 
 WinWorkstation initialize!