Changeset 197 for eaccelerator/trunk/mm.c
- Timestamp:
- 04/11/06 13:10:01 (3 years ago)
- Files:
-
- eaccelerator/trunk/mm.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/mm.c
r193 r197 592 592 static int mm_do_unlock(mm_mutex* lock) { 593 593 if (ReleaseMutex(g_lock.hMutex) == 0) { 594 return 0; 594 // Releasing the mutex doesn't seem to work under windows. It gives some 595 // extremely obscure error code. Locking seems to work though. Because this 596 // flood the error log of the win32 users we are not going to return 0 here 597 // until a windows dev has found the problem. 595 598 } 596 599 return 1;