Show
Ignore:
Timestamp:
04/11/06 13:10:01 (3 years ago)
Author:
bart
Message:

* Silenced the unlock function for win32 until a windows developer can

take a look at it.

* Updated the README a little more for the new control panel
* Added release notes for beta2
* Bumped up version to 0.9.5-beta2
* Released beta2

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/mm.c

    r193 r197  
    592592static int mm_do_unlock(mm_mutex* lock) { 
    593593  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. 
    595598  } 
    596599  return 1;