Changeset 1013 for trunk/psLib/src/sysUtils/psTrace.h
- Timestamp:
- Jun 11, 2004, 7:50:01 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sysUtils/psTrace.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sysUtils/psTrace.h
r978 r1013 1 /** @file psTrace.h 2 * \brief basic run-time trace facilities 3 * \ingroup LogTrace 4 * 5 * This file will hold the prototypes for defining procedures to insert 6 * trace messages into the code. 7 * 8 * @author Robert Lupton, Princeton University 9 * @author George Gusciora, MHPCC 10 * 11 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-06-12 05:50:01 $ 13 * 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 15 */ 1 16 #if !defined(PS_TRACE_H) 2 17 #define PS_TRACE_H 1 … … 4 19 #define DEFAULT_TRACE_LEVEL 0 5 20 6 /** \file psTrace.h 7 * \brief basic run-time trace facilities 8 * \ingroup LogTrace 9 */ 10 11 /***************************************************************************** 12 A component is a string of the form aaa.bbb.ccc, and may itself contain 13 further subcomponents. The Component structure doesn't in fact contain 14 it's full name, but only the last part. 15 *****************************************************************************/ 21 /** Basic structure for the component tree. A component is a string of the 22 form aaa.bbb.ccc, and may itself contain further subcomponents. The 23 Component structure doesn't in fact contain it's full name, but only the 24 last part. */ 16 25 typedef struct Component 17 26 { … … 26 35 * \{ 27 36 */ 28 29 37 30 38 /** Functions **************************************************************/ … … 59 67 ; 60 68 69 /// Set the destination of future trace messages. 61 70 void psTraceSetDestination(FILE *fp); 62 71
Note:
See TracChangeset
for help on using the changeset viewer.
