Changeset 4298
- Timestamp:
- Jun 17, 2005, 11:42:02 AM (21 years ago)
- Location:
- trunk/psLib
- Files:
-
- 6 edited
-
pslib.kdevelop.pcs (modified) ( previous)
-
pslib.kdevses (modified) (2 diffs)
-
src/sys/psMemory.c (modified) (3 diffs)
-
src/sys/psMemory.h (modified) (3 diffs)
-
src/sysUtils/psMemory.c (modified) (3 diffs)
-
src/sysUtils/psMemory.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/pslib.kdevses
r4203 r4298 2 2 <!DOCTYPE KDevPrjSession> 3 3 <KDevPrjSession> 4 <DocsAndViews NumberOfDocuments=" 7" >5 <Doc0 NumberOfViews="1" URL="file:/ //home/desonia/panstarrs/psLib/src/dataIO/psFits.h" >6 <View0 line=" 243" Type="Source" />4 <DocsAndViews NumberOfDocuments="1" > 5 <Doc0 NumberOfViews="1" URL="file:/home/drobbin/panstarrs/psLib/src/dataIO/psDB.c" > 6 <View0 line="0" Type="Source" /> 7 7 </Doc0> 8 <Doc1 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/dataIO/psFits.c" >9 <View0 line="1525" Type="Source" />10 </Doc1>11 <Doc2 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/collections/psMetadata.h" >12 <View0 line="418" Type="Source" />13 </Doc2>14 <Doc3 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/test/dataIO/tst_psFits.c" >15 <View0 line="123" Type="Source" />16 </Doc3>17 <Doc4 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/test/image/tst_psImageGeomManip.c" >18 <View0 line="560" Type="Source" />19 </Doc4>20 <Doc5 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/image/psImageConvolve.c" >21 <View0 line="435" Type="Source" />22 </Doc5>23 <Doc6 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/image/psImageFFT.c" >24 <View0 line="413" Type="Source" />25 </Doc6>26 8 </DocsAndViews> 27 9 <pluginList> 28 <kdevdebugger>29 <breakpointList/>30 </kdevdebugger>31 10 <kdevbookmarks> 32 11 <bookmarks/> … … 38 17 <kcachegrind path="" /> 39 18 </kdevvalgrind> 19 <kdevdebugger> 20 <breakpointList/> 21 </kdevdebugger> 40 22 </pluginList> 41 23 </KDevPrjSession> -
trunk/psLib/src/sys/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/sys/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 ); -
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.
