Changeset 4600
- Timestamp:
- Jul 22, 2005, 1:47:13 PM (21 years ago)
- Location:
- trunk/psLib
- Files:
-
- 6 edited
-
pslib.kdevelop (modified) (5 diffs)
-
pslib.kdevelop.pcs (modified) ( previous)
-
pslib.kdevses (modified) (3 diffs)
-
src/sys/psType.h (modified) (2 diffs)
-
src/types/psArray.c (modified) (4 diffs)
-
src/types/psArray.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/pslib.kdevelop
r4548 r4600 14 14 <projectdirectory>.</projectdirectory> 15 15 <absoluteprojectpath>false</absoluteprojectpath> 16 <description ></description>16 <description/> 17 17 <secondaryLanguages/> 18 18 </general> … … 115 115 <hidepatterns>*.o,*.lo,CVS</hidepatterns> 116 116 <hidenonprojectfiles>false</hidenonprojectfiles> 117 <showvcsfields>false</showvcsfields> 117 118 </tree> 118 119 </kdevfileview> … … 152 153 </codecompletion> 153 154 <creategettersetter> 154 <prefixGet ></prefixGet>155 <prefixGet/> 155 156 <prefixSet>set</prefixSet> 156 157 <prefixVariable>m_,_</prefixVariable> … … 168 169 <kdevdebugger> 169 170 <general> 170 <programargs ></programargs>171 <gdbpath ></gdbpath>171 <programargs/> 172 <gdbpath/> 172 173 <dbgshell>libtool</dbgshell> 173 <configGdbScript ></configGdbScript>174 <runShellScript ></runShellScript>175 <runGdbScript ></runGdbScript>174 <configGdbScript/> 175 <runShellScript/> 176 <runGdbScript/> 176 177 <breakonloadinglibs>true</breakonloadinglibs> 177 178 <separatetty>false</separatetty> … … 184 185 </display> 185 186 </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> 186 194 </kdevelop> -
trunk/psLib/pslib.kdevses
r4548 r4600 2 2 <!DOCTYPE KDevPrjSession> 3 3 <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> 5 12 <pluginList> 6 <kdevdebugger>7 <breakpointList/>8 </kdevdebugger>9 13 <kdevbookmarks> 10 14 <bookmarks> … … 14 18 </bookmarks> 15 19 </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> 16 23 <kdevvalgrind> 17 24 <executable path="" params="" /> … … 20 27 <kcachegrind path="" /> 21 28 </kdevvalgrind> 29 <kdevdebugger> 30 <breakpointList/> 31 </kdevdebugger> 22 32 </pluginList> 23 33 </KDevPrjSession> -
trunk/psLib/src/sys/psType.h
r4590 r4600 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.3 7$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-07-2 1 02:39:57$12 * @version $Revision: 1.38 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-07-22 23:47:13 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 131 131 PS_DATA_SCALAR, ///< psScalar 132 132 PS_DATA_SPHERE, ///< psSphere 133 PS_DATA_SPHEREROT, ///< psSphereTransform133 PS_DATA_SPHEREROT, ///< psSphereTransform 134 134 PS_DATA_SPLINE1D, ///< psSpline1D 135 135 PS_DATA_STATS, ///< psStats -
trunk/psLib/src/types/psArray.c
r4597 r4600 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.3 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-07-22 2 2:19:12$11 * @version $Revision: 1.36 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-07-22 23:47:13 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 66 66 } 67 67 68 psArray* psArrayRealloc(psArray* in, long nalloc) 68 psArray* psArrayRealloc(psArray* in, 69 long nalloc) 69 70 { 70 71 if (in == NULL) { … … 147 148 } 148 149 149 psArray* psArraySort(psArray* array, psComparePtrFunc func) 150 psArray* psArraySort(psArray* array, 151 psComparePtrFunc func) 150 152 { 151 153 if (array == NULL) { … … 185 187 186 188 /// Get an element in the array. 187 psPtr psArrayGet(const psArray* array, long position ) 189 psPtr psArrayGet(const psArray* array, 190 long position ) 188 191 { 189 192 if (array == NULL) { -
trunk/psLib/src/types/psArray.h
r4597 r4600 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1. 29$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-07-22 2 2:19:17$14 * @version $Revision: 1.30 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-07-22 23:47:13 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
Note:
See TracChangeset
for help on using the changeset viewer.
