Ignore:
Timestamp:
Jul 7, 2001, 7:56:41 PM (24 years ago)
Author:
achimha
Message:

better logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wsock32/asyncapi.cpp

    r6203 r6204  
    1 /* $Id: asyncapi.cpp,v 1.12 2001-07-07 17:53:15 achimha Exp $ */
     1/* $Id: asyncapi.cpp,v 1.13 2001-07-07 17:56:41 achimha Exp $ */
    22
    33/*
     
    407407    if (pThreadParm->u.asyncselect.mode == WSA_SELECT_HWND)
    408408    {
    409         dprintf(("AsyncSelectNotifyEvent: notifying window %x %x %x %x", pThreadParm->u.asyncselect.s, pThreadParm->notifyHandle, pThreadParm->notifyData, event));
     409        dprintf(("AsyncSelectNotifyEvent: notifying window, socket: 0x%x, window handle: 0x%x, window message: 0x%x, event: 0x%x", pThreadParm->u.asyncselect.s, pThreadParm->notifyHandle, pThreadParm->notifyData, event));
    410410        PostMessageA((HWND)pThreadParm->notifyHandle, (DWORD)pThreadParm->notifyData, (WPARAM)pThreadParm->u.asyncselect.s,
    411411                     (LPARAM)event);
     
    414414    if (pThreadParm->u.asyncselect.mode == WSA_SELECT_HEVENT)
    415415    {
    416         dprintf(("AsyncSelectNotifyEvent: notifying event semaphore %x %x %x %x", pThreadParm->u.asyncselect.s, pThreadParm->notifyHandle, pThreadParm->notifyData, event));
     416        dprintf(("AsyncSelectNotifyEvent: notifying event semaphore, socket: 0x%x, HEVENT: 0x%x, event: 0x%x", pThreadParm->u.asyncselect.s, pThreadParm->notifyHandle, event));
    417417        SetEvent(pThreadParm->notifyHandle);
    418418    }
Note: See TracChangeset for help on using the changeset viewer.