Index: /trunk/psLib/pslib.kdevses
===================================================================
--- /trunk/psLib/pslib.kdevses	(revision 4297)
+++ /trunk/psLib/pslib.kdevses	(revision 4298)
@@ -2,31 +2,10 @@
 <!DOCTYPE KDevPrjSession>
 <KDevPrjSession>
- <DocsAndViews NumberOfDocuments="7" >
-  <Doc0 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/dataIO/psFits.h" >
-   <View0 line="243" Type="Source" />
+ <DocsAndViews NumberOfDocuments="1" >
+  <Doc0 NumberOfViews="1" URL="file:/home/drobbin/panstarrs/psLib/src/dataIO/psDB.c" >
+   <View0 line="0" Type="Source" />
   </Doc0>
-  <Doc1 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/dataIO/psFits.c" >
-   <View0 line="1525" Type="Source" />
-  </Doc1>
-  <Doc2 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/collections/psMetadata.h" >
-   <View0 line="418" Type="Source" />
-  </Doc2>
-  <Doc3 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/test/dataIO/tst_psFits.c" >
-   <View0 line="123" Type="Source" />
-  </Doc3>
-  <Doc4 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/test/image/tst_psImageGeomManip.c" >
-   <View0 line="560" Type="Source" />
-  </Doc4>
-  <Doc5 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/image/psImageConvolve.c" >
-   <View0 line="435" Type="Source" />
-  </Doc5>
-  <Doc6 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/image/psImageFFT.c" >
-   <View0 line="413" Type="Source" />
-  </Doc6>
  </DocsAndViews>
  <pluginList>
-  <kdevdebugger>
-   <breakpointList/>
-  </kdevdebugger>
   <kdevbookmarks>
    <bookmarks/>
@@ -38,4 +17,7 @@
    <kcachegrind path="" />
   </kdevvalgrind>
+  <kdevdebugger>
+   <breakpointList/>
+  </kdevdebugger>
  </pluginList>
 </KDevPrjSession>
Index: /trunk/psLib/src/sys/psMemory.c
===================================================================
--- /trunk/psLib/src/sys/psMemory.c	(revision 4297)
+++ /trunk/psLib/src/sys/psMemory.c	(revision 4298)
@@ -8,6 +8,6 @@
 *  @author Robert Lupton, Princeton University
 *
-*  @version $Revision: 1.52 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-08 23:40:45 $
+*  @version $Revision: 1.53 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-17 21:42:02 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -670,5 +670,5 @@
 }
 
-psBool p_psMemGetPersistent(psPtr vptr)
+bool p_psMemGetPersistent(psPtr vptr)
 {
     if (vptr == NULL) {
@@ -685,5 +685,5 @@
 }
 
-void p_psMemSetPersistent(psPtr vptr,psBool value)
+void p_psMemSetPersistent(psPtr vptr, bool value)
 {
     if (vptr == NULL) {
Index: /trunk/psLib/src/sys/psMemory.h
===================================================================
--- /trunk/psLib/src/sys/psMemory.h	(revision 4297)
+++ /trunk/psLib/src/sys/psMemory.h	(revision 4298)
@@ -12,6 +12,6 @@
  *  @ingroup MemoryManagement
  *
- *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-17 21:42:02 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -180,5 +180,5 @@
 void p_psMemSetPersistent(
     psPtr ptr,                         ///< the memory block to operate on
-    psBool value                         ///< true if memory is persistent, otherwise false
+    bool value                         ///< true if memory is persistent, otherwise false
 );
 
@@ -192,5 +192,5 @@
  *  @return psBool    true if memory is marked persistent, otherwise false.
  */
-psBool p_psMemGetPersistent(
+bool p_psMemGetPersistent(
     psPtr ptr                          ///< the memory block to check.
 );
Index: /trunk/psLib/src/sysUtils/psMemory.c
===================================================================
--- /trunk/psLib/src/sysUtils/psMemory.c	(revision 4297)
+++ /trunk/psLib/src/sysUtils/psMemory.c	(revision 4298)
@@ -8,6 +8,6 @@
 *  @author Robert Lupton, Princeton University
 *
-*  @version $Revision: 1.52 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-08 23:40:45 $
+*  @version $Revision: 1.53 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-17 21:42:02 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -670,5 +670,5 @@
 }
 
-psBool p_psMemGetPersistent(psPtr vptr)
+bool p_psMemGetPersistent(psPtr vptr)
 {
     if (vptr == NULL) {
@@ -685,5 +685,5 @@
 }
 
-void p_psMemSetPersistent(psPtr vptr,psBool value)
+void p_psMemSetPersistent(psPtr vptr, bool value)
 {
     if (vptr == NULL) {
Index: /trunk/psLib/src/sysUtils/psMemory.h
===================================================================
--- /trunk/psLib/src/sysUtils/psMemory.h	(revision 4297)
+++ /trunk/psLib/src/sysUtils/psMemory.h	(revision 4298)
@@ -12,6 +12,6 @@
  *  @ingroup MemoryManagement
  *
- *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-17 21:42:02 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -180,5 +180,5 @@
 void p_psMemSetPersistent(
     psPtr ptr,                         ///< the memory block to operate on
-    psBool value                         ///< true if memory is persistent, otherwise false
+    bool value                         ///< true if memory is persistent, otherwise false
 );
 
@@ -192,5 +192,5 @@
  *  @return psBool    true if memory is marked persistent, otherwise false.
  */
-psBool p_psMemGetPersistent(
+bool p_psMemGetPersistent(
     psPtr ptr                          ///< the memory block to check.
 );
