IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4600


Ignore:
Timestamp:
Jul 22, 2005, 1:47:13 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

Location:
trunk/psLib
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/pslib.kdevelop

    r4548 r4600  
    1414    <projectdirectory>.</projectdirectory>
    1515    <absoluteprojectpath>false</absoluteprojectpath>
    16     <description></description>
     16    <description/>
    1717    <secondaryLanguages/>
    1818  </general>
     
    115115      <hidepatterns>*.o,*.lo,CVS</hidepatterns>
    116116      <hidenonprojectfiles>false</hidenonprojectfiles>
     117      <showvcsfields>false</showvcsfields>
    117118    </tree>
    118119  </kdevfileview>
     
    152153    </codecompletion>
    153154    <creategettersetter>
    154       <prefixGet></prefixGet>
     155      <prefixGet/>
    155156      <prefixSet>set</prefixSet>
    156157      <prefixVariable>m_,_</prefixVariable>
     
    168169  <kdevdebugger>
    169170    <general>
    170       <programargs></programargs>
    171       <gdbpath></gdbpath>
     171      <programargs/>
     172      <gdbpath/>
    172173      <dbgshell>libtool</dbgshell>
    173       <configGdbScript></configGdbScript>
    174       <runShellScript></runShellScript>
    175       <runGdbScript></runGdbScript>
     174      <configGdbScript/>
     175      <runShellScript/>
     176      <runGdbScript/>
    176177      <breakonloadinglibs>true</breakonloadinglibs>
    177178      <separatetty>false</separatetty>
     
    184185    </display>
    185186  </kdevdebugger>
     187  <kdevcvsservice>
     188    <recursivewhenupdate>true</recursivewhenupdate>
     189    <prunedirswhenupdate>true</prunedirswhenupdate>
     190    <createdirswhenupdate>true</createdirswhenupdate>
     191    <recursivewhencommitremove>true</recursivewhencommitremove>
     192    <revertoptions>-C</revertoptions>
     193  </kdevcvsservice>
    186194</kdevelop>
  • trunk/psLib/pslib.kdevses

    r4548 r4600  
    22<!DOCTYPE KDevPrjSession>
    33<KDevPrjSession>
    4  <DocsAndViews NumberOfDocuments="0" />
     4 <DocsAndViews NumberOfDocuments="2" >
     5  <Doc0 NumberOfViews="1" URL="file:/home/drobbin/panstarrs/new/psLib/src/types/psArray.c" >
     6   <View0 Type="Source" />
     7  </Doc0>
     8  <Doc1 NumberOfViews="1" URL="file:/home/drobbin/panstarrs/new/psLib/src/types/psArray.h" >
     9   <View0 line="58" Type="Source" />
     10  </Doc1>
     11 </DocsAndViews>
    512 <pluginList>
    6   <kdevdebugger>
    7    <breakpointList/>
    8   </kdevdebugger>
    913  <kdevbookmarks>
    1014   <bookmarks>
     
    1418   </bookmarks>
    1519  </kdevbookmarks>
     20  <kdevsubversion>
     21   <subversion recurseresolve="1" recurserelocate="1" recursemerge="1" recursecommit="1" base="" recursepropget="1" recurseswitch="1" recurseupdate="1" recursepropset="1" recursediff="1" recurserevert="1" forcemove="1" recursecheckout="1" forceremove="1" recurseadd="1" recurseproplist="1" forcemerge="1" />
     22  </kdevsubversion>
    1623  <kdevvalgrind>
    1724   <executable path="" params="" />
     
    2027   <kcachegrind path="" />
    2128  </kdevvalgrind>
     29  <kdevdebugger>
     30   <breakpointList/>
     31  </kdevdebugger>
    2232 </pluginList>
    2333</KDevPrjSession>
  • trunk/psLib/src/sys/psType.h

    r4590 r4600  
    1010*  @author Ross Harman, MHPCC
    1111*
    12 *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-07-21 02:39:57 $
     12*  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-07-22 23:47:13 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    131131    PS_DATA_SCALAR,                    ///< psScalar
    132132    PS_DATA_SPHERE,                    ///< psSphere
    133     PS_DATA_SPHEREROT,           ///< psSphereTransform
     133    PS_DATA_SPHEREROT,                 ///< psSphereTransform
    134134    PS_DATA_SPLINE1D,                  ///< psSpline1D
    135135    PS_DATA_STATS,                     ///< psStats
  • trunk/psLib/src/types/psArray.c

    r4597 r4600  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-07-22 22:19:12 $
     11 *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-07-22 23:47:13 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6666}
    6767
    68 psArray* psArrayRealloc(psArray* in, long nalloc)
     68psArray* psArrayRealloc(psArray* in,
     69                        long nalloc)
    6970{
    7071    if (in == NULL) {
     
    147148}
    148149
    149 psArray* psArraySort(psArray* array, psComparePtrFunc func)
     150psArray* psArraySort(psArray* array,
     151                     psComparePtrFunc func)
    150152{
    151153    if (array == NULL) {
     
    185187
    186188/// Get an element in the array.
    187 psPtr psArrayGet(const psArray* array,  long position )
     189psPtr psArrayGet(const psArray* array,
     190                 long position )
    188191{
    189192    if (array == NULL) {
  • trunk/psLib/src/types/psArray.h

    r4597 r4600  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-07-22 22:19:17 $
     14 *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-07-22 23:47:13 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
Note: See TracChangeset for help on using the changeset viewer.