Ignore:
Timestamp:
Jan 22, 2001, 7:26:52 PM (25 years ago)
Author:
sandervl
Message:

memory map + handle manager fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/heap.cpp

    r4566 r5011  
    1 /* $Id: heap.cpp,v 1.23 2000-11-06 20:01:26 sandervl Exp $ */
     1/* $Id: heap.cpp,v 1.24 2001-01-22 18:26:50 sandervl Exp $ */
    22
    33/*
     
    4747 OS2Heap *curheap = OS2Heap::find(hHeap);
    4848
    49   dprintf2(("HeapReAlloc %X bytes", dwBytes));
     49  dprintf2(("HeapReAlloc %x %x %x %X bytes", hHeap, dwFlags, lpMem, dwBytes));
    5050  if(curheap == NULL)
    5151        return(NULL);
     
    388388HGLOBAL WIN32API GlobalReAlloc(HGLOBAL arg1, DWORD arg2, UINT  arg3)
    389389{
    390     dprintf(("KERNEL32:  GlobalReAlloc\n"));
     390    dprintf(("KERNEL32: GlobalReAlloc %x %x %d", arg1, arg2, arg3));
    391391
    392392    return O32_GlobalReAlloc(arg1, arg2, arg3);
Note: See TracChangeset for help on using the changeset viewer.