Changeset 978
- Timestamp:
- Jun 9, 2004, 4:09:57 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 7 edited
-
Doxyfile (modified) (1 diff)
-
dataManip/psStats.c (modified) (1 diff)
-
math/psStats.c (modified) (1 diff)
-
sys/psMemory.h (modified) (5 diffs)
-
sys/psTrace.h (modified) (2 diffs)
-
sysUtils/psMemory.h (modified) (5 diffs)
-
sysUtils/psTrace.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/Doxyfile
r974 r978 369 369 370 370 # If the value of the INPUT tag contains directories, you can use the 371 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 372 # and *.h) to filter out the source-files in the directories. If left 373 # blank the following patterns are tested: 374 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 371 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 372 # and *.h) to filter out the source-files in the directories. If left 373 # blank the following patterns are tested: 374 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 375 375 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc 376 376 377 FILE_PATTERNS = 378 379 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 380 # should be searched for input files as well. Possible values are YES and NO. 377 FILE_PATTERNS = *.h *.dox 378 379 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 380 # should be searched for input files as well. Possible values are YES and NO. 381 381 # If left blank NO is used. 382 382 -
trunk/psLib/src/dataManip/psStats.c
r893 r978 28 28 #define MYMAXFLOAT 1e99 29 29 30 #ifndef DOXYGEN 30 31 void p_psVectorRobustStats(const psVector *restrict myVector, 31 32 const psVector *restrict maskVector, 32 33 unsigned int maskVal, 33 34 psStats *stats); 35 #endif 36 34 37 /****************************************************************************** 35 38 psStatsAlloc(): This routine must create a new psStats data structure. -
trunk/psLib/src/math/psStats.c
r893 r978 28 28 #define MYMAXFLOAT 1e99 29 29 30 #ifndef DOXYGEN 30 31 void p_psVectorRobustStats(const psVector *restrict myVector, 31 32 const psVector *restrict maskVector, 32 33 unsigned int maskVal, 33 34 psStats *stats); 35 #endif 36 34 37 /****************************************************************************** 35 38 psStatsAlloc(): This routine must create a new psStats data structure. -
trunk/psLib/src/sys/psMemory.h
r974 r978 14 14 * @ingroup MemoryManagement 15 15 * 16 * @version $Revision: 1.1 7$ $Name: not supported by cvs2svn $17 * @date $Date: 2004-06-10 0 1:58:06$16 * @version $Revision: 1.18 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2004-06-10 02:09:57 $ 18 18 * 19 19 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 * 32 32 * Routines dealing with the creating and setting of memory management callback functions. 33 */ 34 35 /** 36 * @addtogroup memTracing Memory Tracing 37 * 38 * Routines dealing with memory tracing and corruption checking. 33 39 */ 34 40 … … 182 188 * blocks above id0 that have not been freed. 183 189 * @see psAlloc, psFree, psgetMemId, psMemProblemCallbackSet 190 * @ingroup memTracing 184 191 */ 185 192 int psMemCheckLeaks( … … 192 199 * i.e., invalid markers that signify a buffer under/overflow. 193 200 * 201 * @ingroup memTracing 194 202 */ 195 203 int psMemCheckCorruption( … … 276 284 #define PS_FREE (void*)1 277 285 286 //@} End of Memory Management Functions 287 288 289 #ifndef DOXYGEN 290 278 291 void p_psCustomFree(psFreeFcn fcn,void* ptr); 279 280 //@} End of Memory Management Functions281 282 #ifndef DOXYGEN283 292 284 293 /* -
trunk/psLib/src/sys/psTrace.h
r974 r978 30 30 /** Functions **************************************************************/ 31 31 32 #ifndef DOXYGEN 32 33 /// Send a trace message 33 34 void p_psTrace(const char *facil, ///< facilty of interest … … 35 36 ...) ///< trace message arguments 36 37 ; 38 #endif 37 39 38 40 /// Set trace level -
trunk/psLib/src/sysUtils/psMemory.h
r974 r978 14 14 * @ingroup MemoryManagement 15 15 * 16 * @version $Revision: 1.1 7$ $Name: not supported by cvs2svn $17 * @date $Date: 2004-06-10 0 1:58:06$16 * @version $Revision: 1.18 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2004-06-10 02:09:57 $ 18 18 * 19 19 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 * 32 32 * Routines dealing with the creating and setting of memory management callback functions. 33 */ 34 35 /** 36 * @addtogroup memTracing Memory Tracing 37 * 38 * Routines dealing with memory tracing and corruption checking. 33 39 */ 34 40 … … 182 188 * blocks above id0 that have not been freed. 183 189 * @see psAlloc, psFree, psgetMemId, psMemProblemCallbackSet 190 * @ingroup memTracing 184 191 */ 185 192 int psMemCheckLeaks( … … 192 199 * i.e., invalid markers that signify a buffer under/overflow. 193 200 * 201 * @ingroup memTracing 194 202 */ 195 203 int psMemCheckCorruption( … … 276 284 #define PS_FREE (void*)1 277 285 286 //@} End of Memory Management Functions 287 288 289 #ifndef DOXYGEN 290 278 291 void p_psCustomFree(psFreeFcn fcn,void* ptr); 279 280 //@} End of Memory Management Functions281 282 #ifndef DOXYGEN283 292 284 293 /* -
trunk/psLib/src/sysUtils/psTrace.h
r974 r978 30 30 /** Functions **************************************************************/ 31 31 32 #ifndef DOXYGEN 32 33 /// Send a trace message 33 34 void p_psTrace(const char *facil, ///< facilty of interest … … 35 36 ...) ///< trace message arguments 36 37 ; 38 #endif 37 39 38 40 /// Set trace level
Note:
See TracChangeset
for help on using the changeset viewer.
