Changeset 9667 for trunk/src/kernel32/heapshared.cpp
- Timestamp:
- Jan 13, 2003, 5:51:40 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/heapshared.cpp
r8898 r9667 1 /* $Id: heapshared.cpp,v 1.1 0 2002-07-21 09:17:28sandervl Exp $ */1 /* $Id: heapshared.cpp,v 1.11 2003-01-13 16:51:39 sandervl Exp $ */ 2 2 /* 3 3 * Shared heap functions for OS/2 … … 197 197 void * SYSTEM _smalloc(int size) 198 198 { 199 return _umalloc(sharedHeap, size); 199 void *chunk; 200 201 chunk = _umalloc(sharedHeap, size); 202 dprintf2(("_smalloc %x returned %x", size, chunk)); 203 return chunk; 200 204 } 201 205 //****************************************************************************** … … 209 213 memset(chunk, 0, size); 210 214 } 215 dprintf2(("_smallocfill %x %x returned %x", size, filler, chunk)); 211 216 return chunk; 212 217 }
Note:
See TracChangeset
for help on using the changeset viewer.