Changeset 7029 for trunk/src/kernel32/os2heap.cpp
- Timestamp:
- Oct 12, 2001, 9:06:39 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/os2heap.cpp
r7027 r7029 1 /* $Id: os2heap.cpp,v 1.2 7 2001-10-12 03:48:06phaller Exp $ */1 /* $Id: os2heap.cpp,v 1.28 2001-10-12 07:05:48 phaller Exp $ */ 2 2 3 3 /* … … 50 50 //****************************************************************************** 51 51 52 static int fhhm_hit = 0; 53 static int fhhm_miss = 0; 52 54 static HANDLE fhhm_lastHandle = 0; 53 55 static OS2Heap* fhhm_lastHeap = NULL; … … 308 310 if (fhhm_lastHeap) 309 311 if (hHeap == fhhm_lastHandle) 312 { 313 fhhm_hit++; 310 314 return fhhm_lastHeap; 315 } 316 317 fhhm_miss++; 311 318 312 319 OS2Heap *curheap = OS2Heap::heap;
Note:
See TracChangeset
for help on using the changeset viewer.