Ignore:
Timestamp:
Oct 12, 2001, 9:06:39 AM (24 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

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

    r7027 r7029  
    1 /* $Id: os2heap.cpp,v 1.27 2001-10-12 03:48:06 phaller Exp $ */
     1/* $Id: os2heap.cpp,v 1.28 2001-10-12 07:05:48 phaller Exp $ */
    22
    33/*
     
    5050//******************************************************************************
    5151
     52static int fhhm_hit = 0;
     53static int fhhm_miss = 0;
    5254static HANDLE   fhhm_lastHandle = 0;
    5355static OS2Heap* fhhm_lastHeap   = NULL;
     
    308310  if (fhhm_lastHeap)
    309311    if (hHeap == fhhm_lastHandle)
     312    {
     313      fhhm_hit++;
    310314      return fhhm_lastHeap;
     315    }
     316 
     317  fhhm_miss++;
    311318 
    312319  OS2Heap *curheap = OS2Heap::heap;
Note: See TracChangeset for help on using the changeset viewer.