- Timestamp:
- Oct 11, 2003, 1:25:48 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/sys/heaphigh.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r825 r826 28 28 * Header Files * 29 29 *******************************************************************************/ 30 #include "libc-alias.h" 30 31 #define INCL_DOSMEMMGR 31 32 #define INCL_ERRORS 32 33 #include <os2emx.h> 34 #include <string.h> 33 35 #include <emx/umalloc.h> 34 36 #include "syscalls.h" … … 142 144 if (_fmutex_request(&_sys_gmtxHimem, _FMR_IGNINT) != 0) 143 145 return; 144 for (pChunk = pHimemHead, pPrevChunk ; pChunk; pPrevChunk = pChunk, pChunk = pChunk->pNext)146 for (pChunk = pHimemHead, pPrevChunk = NULL; pChunk; pPrevChunk = pChunk, pChunk = pChunk->pNext) 145 147 if (&pChunk[1] == pv) 146 148 { -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.