Jan Zerebecki : itss: Add DebugInfo to critical sections.
Module: wine Branch: master Commit: 373fcd00664b9b57ec787628746b9a2480fd892e URL: http://source.winehq.org/git/wine.git/?a=commit;h=373fcd00664b9b57ec78762874... Author: Jan Zerebecki <jan.wine(a)zerebecki.de> Date: Sat Mar 10 22:08:38 2007 +0100 itss: Add DebugInfo to critical sections. --- dlls/itss/chm_lib.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/dlls/itss/chm_lib.c b/dlls/itss/chm_lib.c index 074ca3d..c0f3699 100644 --- a/dlls/itss/chm_lib.c +++ b/dlls/itss/chm_lib.c @@ -705,8 +705,11 @@ struct chmFile *chm_openW(const WCHAR *filename) /* initialize mutexes, if needed */ InitializeCriticalSection(&newHandle->mutex); + newHandle->mutex.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": chmFile.mutex"); InitializeCriticalSection(&newHandle->lzx_mutex); + newHandle->lzx_mutex.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": chmFile.lzx_mutex"); InitializeCriticalSection(&newHandle->cache_mutex); + newHandle->cache_mutex.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": chmFile.cache_mutex"); /* read and verify header */ sremain = _CHM_ITSF_V3_LEN; @@ -826,8 +829,11 @@ void chm_close(struct chmFile *h) CHM_CLOSE_FILE(h->fd); h->fd = CHM_NULL_FD; + h->mutex.DebugInfo->Spare[0] = 0; DeleteCriticalSection(&h->mutex); + h->lzx_mutex.DebugInfo->Spare[0] = 0; DeleteCriticalSection(&h->lzx_mutex); + h->cache_mutex.DebugInfo->Spare[0] = 0; DeleteCriticalSection(&h->cache_mutex); if (h->lzx_state)
participants (1)
-
Alexandre Julliard