Ignore:
Timestamp:
Jan 11, 2004, 1:04:44 PM (22 years ago)
Author:
sandervl
Message:

Update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wndhandle.cpp

    r10256 r10379  
    1 /* $Id: win32wndhandle.cpp,v 1.18 2003-10-02 10:36:00 sandervl Exp $ */
     1/* $Id: win32wndhandle.cpp,v 1.19 2004-01-11 12:03:21 sandervl Exp $ */
    22/*
    33 * Win32 Handle Management Code for OS/2
     
    4848{
    4949    if(globalwhandlecritsect.hmtxLock == 0) {
    50          dprintf(("InitializeWindowHandles -> create shared critical section"));
     50         dprintf(("InitializeWindowHandles %x -> create shared critical section", &globalwhandlecritsect));
    5151         DosInitializeCriticalSection(&globalwhandlecritsect, pszWndHandleSemName);
    5252    }
    5353    else {
    54          dprintf(("InitializeWindowHandles -> access shared critical section"));
     54         dprintf(("InitializeWindowHandles %x -> access shared critical section", &globalwhandlecritsect));
    5555         DosAccessCriticalSection(&globalwhandlecritsect, pszWndHandleSemName);
    5656    }
     
    6060void FinalizeWindowHandles()
    6161{
     62    dprintf(("FinalizeWindowHandles %x", &globalwhandlecritsect));
    6263    DosDeleteCriticalSection(&globalwhandlecritsect);
    6364}
Note: See TracChangeset for help on using the changeset viewer.