Changeset 4298 for trunk/psLib/src/sysUtils
- Timestamp:
- Jun 17, 2005, 11:42:02 AM (21 years ago)
- Location:
- trunk/psLib/src/sysUtils
- Files:
-
- 2 edited
-
psMemory.c (modified) (3 diffs)
-
psMemory.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sysUtils/psMemory.c
r4162 r4298 8 8 * @author Robert Lupton, Princeton University 9 9 * 10 * @version $Revision: 1.5 2$ $Name: not supported by cvs2svn $11 * @date $Date: 2005-06- 08 23:40:45$10 * @version $Revision: 1.53 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2005-06-17 21:42:02 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 670 670 } 671 671 672 psBool p_psMemGetPersistent(psPtr vptr)672 bool p_psMemGetPersistent(psPtr vptr) 673 673 { 674 674 if (vptr == NULL) { … … 685 685 } 686 686 687 void p_psMemSetPersistent(psPtr vptr, psBool value)687 void p_psMemSetPersistent(psPtr vptr, bool value) 688 688 { 689 689 if (vptr == NULL) { -
trunk/psLib/src/sysUtils/psMemory.h
r4162 r4298 12 12 * @ingroup MemoryManagement 13 13 * 14 * @version $Revision: 1.3 7$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-06- 08 23:40:45$14 * @version $Revision: 1.38 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-06-17 21:42:02 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 180 180 void p_psMemSetPersistent( 181 181 psPtr ptr, ///< the memory block to operate on 182 psBool value ///< true if memory is persistent, otherwise false182 bool value ///< true if memory is persistent, otherwise false 183 183 ); 184 184 … … 192 192 * @return psBool true if memory is marked persistent, otherwise false. 193 193 */ 194 psBool p_psMemGetPersistent(194 bool p_psMemGetPersistent( 195 195 psPtr ptr ///< the memory block to check. 196 196 );
Note:
See TracChangeset
for help on using the changeset viewer.
