Changeset 4610
- Timestamp:
- Jul 25, 2005, 2:44:45 PM (21 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
sys/psTrace.h (modified) (5 diffs)
-
types/psBitSet.h (modified) (4 diffs)
-
types/psMetadata.c (modified) (1 diff)
-
types/psMetadata.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psTrace.h
r4409 r4610 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.3 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-0 6-28 20:17:52$11 * @version $Revision: 1.35 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-07-26 00:44:44 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 51 51 typedef struct p_psComponent 52 52 { 53 const char *name; //last part of name of component54 psS32 level; //trace level for this component55 bool p_psSpecified; 56 psS32 n; //number of subcomponents57 struct p_psComponent* *subcomp; //next level of subcomponents53 const char *name; ///< last part of name of component 54 psS32 level; ///< trace level for this component 55 bool p_psSpecified; ///< whether the component is specified 56 psS32 n; ///< number of subcomponents 57 struct p_psComponent* *subcomp; ///< next level of subcomponents 58 58 } 59 59 p_psComponent; 60 60 61 /** Sends a trace message. */ 61 62 #ifdef DOXYGEN 62 63 void psTrace( … … 80 81 #endif /* DOXYGEN */ 81 82 82 /// Set trace level 83 /** Set trace level 84 * 85 * @return psBool: True if successful, otherwise false 86 */ 83 87 psBool psTraceSetLevel( 84 88 const char *facil, ///< facilty of interest … … 86 90 ); 87 91 88 /// Get the trace level 92 /** Get the trace level 93 * 94 * @return int: Trace Level 95 */ 89 96 int psTraceGetLevel( 90 97 const char *facil ///< facilty of interest … … 99 106 /// Set the destination of future trace messages. 100 107 void psTraceSetDestination( 101 FILE * fp ///< 108 FILE * fp ///< Pointer to file 102 109 ); 103 110 104 /// Get the current destination for trace messages. 111 /** Get the current destination for trace messages. 112 * 113 * @return FILE*: File Destination 114 */ 105 115 FILE *psTraceGetDestination(void); 106 116 -
trunk/psLib/src/types/psBitSet.h
r4556 r4610 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.2 1$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-07- 15 02:33:54$14 * @version $Revision: 1.22 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-07-26 00:44:45 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 54 54 * @return psBitSet* : Pointer to struct containing array of bits and size of array. 55 55 */ 56 57 /*@null@*/58 56 psBitSet* psBitSetAlloc( 59 57 long nalloc ///< Number of bits in psBitSet array … … 70 68 */ 71 69 psBitSet* psBitSetSet( 72 /* @returned@ */73 70 psBitSet* bitSet, ///< Pointer to psBitSet to be set. 74 71 long bit ///< Bit to be set. … … 96 93 * value of one, since that is the value that was set. 97 94 * 98 * @return int: Value of bit, either one or zero.95 * @return bool: True if successful, otherwise false 99 96 */ 100 97 -
trunk/psLib/src/types/psMetadata.c
r4590 r4610 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.7 3$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-07-2 1 02:39:57$14 * @version $Revision: 1.74 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-07-26 00:44:45 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/types/psMetadata.h
r4590 r4610 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.5 5$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-07-2 1 02:39:57$13 * @version $Revision: 1.56 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-07-26 00:44:45 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 238 238 psMetadataItem* psMetadataItemAllocV( 239 239 const char *name, ///< Name of metadata item. 240 psDataType type, ///< Type of metadata item.240 psDataType type, ///< Type of metadata item. 241 241 const char *comment, ///< Comment for metadata item. 242 242 va_list list ///< Arguments for name formatting and metadata item data. … … 329 329 bool psMetadataAddF64( 330 330 psMetadata* md, ///< Metadata collection to insert metadata item 331 long location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL331 long location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 332 332 const char* name, ///< Name of metadata item 333 333 const char* comment, ///< Comment for metadata item … … 401 401 psBool psMetadataAddHash( 402 402 psMetadata* md, ///< Metadata collection to insert metadata item 403 long location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL403 long location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 404 404 const char* name, ///< Name of metadata item 405 405 const char* comment, ///< Comment for metadata item … … 551 551 psMetadataItem* psMetadataGet( 552 552 const psMetadata* md, ///< Metadata collection to retrieve metadata item. 553 int location ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL553 int location ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 554 554 ); 555 555
Note:
See TracChangeset
for help on using the changeset viewer.
