Changeset 10940 for branches/jch-memory/psLib/src/sys/psMemory.h
- Timestamp:
- Jan 5, 2007, 11:26:52 AM (19 years ago)
- File:
-
- 1 edited
-
branches/jch-memory/psLib/src/sys/psMemory.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/jch-memory/psLib/src/sys/psMemory.h
r10914 r10940 14 14 * @ingroup MemoryManagement 15 15 * 16 * @version $Revision: 1.61.2. 7$ $Name: not supported by cvs2svn $17 * @date $Date: 2007-01-05 04:36:19$16 * @version $Revision: 1.61.2.8 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2007-01-05 21:26:52 $ 18 18 * 19 19 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 32 32 */ 33 33 34 #define P_PS_MEMMAGIC (ps Ptr)0xdeadbeef // Magic number in psMemBlock header34 #define P_PS_MEMMAGIC (psU32)0xdeadbeef // Magic number in psMemBlock header 35 35 36 36 /** … … 68 68 typedef struct psMemBlock 69 69 { 70 const void*startblock; ///< initialised to p_psMEMMAGIC70 const psU32 startblock; ///< initialised to p_psMEMMAGIC 71 71 struct psMemBlock* previousBlock; ///< previous block in allocation list 72 72 struct psMemBlock* nextBlock; ///< next block allocation list … … 80 80 psReferenceCount refCounter; ///< how many times pointer is referenced 81 81 bool persistent; ///< marks if this non-user persistent data like error stack, etc. 82 const void*endblock; ///< initialised to p_psMEMMAGIC82 const psU32 endblock; ///< initialised to p_psMEMMAGIC 83 83 } 84 84 psMemBlock;
Note:
See TracChangeset
for help on using the changeset viewer.
