IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4298


Ignore:
Timestamp:
Jun 17, 2005, 11:42:02 AM (21 years ago)
Author:
drobbin
Message:

* empty log message *

Location:
trunk/psLib
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/pslib.kdevses

    r4203 r4298  
    22<!DOCTYPE KDevPrjSession>
    33<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" />
    77  </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>
    268 </DocsAndViews>
    279 <pluginList>
    28   <kdevdebugger>
    29    <breakpointList/>
    30   </kdevdebugger>
    3110  <kdevbookmarks>
    3211   <bookmarks/>
     
    3817   <kcachegrind path="" />
    3918  </kdevvalgrind>
     19  <kdevdebugger>
     20   <breakpointList/>
     21  </kdevdebugger>
    4022 </pluginList>
    4123</KDevPrjSession>
  • trunk/psLib/src/sys/psMemory.c

    r4162 r4298  
    88*  @author Robert Lupton, Princeton University
    99*
    10 *  @version $Revision: 1.52 $ $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 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    670670}
    671671
    672 psBool p_psMemGetPersistent(psPtr vptr)
     672bool p_psMemGetPersistent(psPtr vptr)
    673673{
    674674    if (vptr == NULL) {
     
    685685}
    686686
    687 void p_psMemSetPersistent(psPtr vptr,psBool value)
     687void p_psMemSetPersistent(psPtr vptr, bool value)
    688688{
    689689    if (vptr == NULL) {
  • trunk/psLib/src/sys/psMemory.h

    r4162 r4298  
    1212 *  @ingroup MemoryManagement
    1313 *
    14  *  @version $Revision: 1.37 $ $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 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    180180void p_psMemSetPersistent(
    181181    psPtr ptr,                         ///< the memory block to operate on
    182     psBool value                         ///< true if memory is persistent, otherwise false
     182    bool value                         ///< true if memory is persistent, otherwise false
    183183);
    184184
     
    192192 *  @return psBool    true if memory is marked persistent, otherwise false.
    193193 */
    194 psBool p_psMemGetPersistent(
     194bool p_psMemGetPersistent(
    195195    psPtr ptr                          ///< the memory block to check.
    196196);
  • trunk/psLib/src/sysUtils/psMemory.c

    r4162 r4298  
    88*  @author Robert Lupton, Princeton University
    99*
    10 *  @version $Revision: 1.52 $ $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 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    670670}
    671671
    672 psBool p_psMemGetPersistent(psPtr vptr)
     672bool p_psMemGetPersistent(psPtr vptr)
    673673{
    674674    if (vptr == NULL) {
     
    685685}
    686686
    687 void p_psMemSetPersistent(psPtr vptr,psBool value)
     687void p_psMemSetPersistent(psPtr vptr, bool value)
    688688{
    689689    if (vptr == NULL) {
  • trunk/psLib/src/sysUtils/psMemory.h

    r4162 r4298  
    1212 *  @ingroup MemoryManagement
    1313 *
    14  *  @version $Revision: 1.37 $ $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 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    180180void p_psMemSetPersistent(
    181181    psPtr ptr,                         ///< the memory block to operate on
    182     psBool value                         ///< true if memory is persistent, otherwise false
     182    bool value                         ///< true if memory is persistent, otherwise false
    183183);
    184184
     
    192192 *  @return psBool    true if memory is marked persistent, otherwise false.
    193193 */
    194 psBool p_psMemGetPersistent(
     194bool p_psMemGetPersistent(
    195195    psPtr ptr                          ///< the memory block to check.
    196196);
Note: See TracChangeset for help on using the changeset viewer.