Changeset 974 for trunk/psLib/src/sysUtils
- Timestamp:
- Jun 9, 2004, 3:58:06 PM (22 years ago)
- Location:
- trunk/psLib/src/sysUtils
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sysUtils/psAbort.h
r530 r974 1 1 /** @file psAbort.h 2 *3 * @ingroup SystemGroup System Utilities4 2 * 5 3 * @brief Contains the declarations for the abort function … … 9 7 * needing to abort from program execution. 10 8 * 9 * @ingroup ErrorHandling 10 * 11 11 * @author Eric Van Alst, MHPCC 12 * 13 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-0 4-27 19:24:32$12 * 13 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-06-10 01:58:06 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 #define PS_ABORT_H 21 21 22 /******************************************************************************/23 /* DEFINE STATEMENTS */24 /******************************************************************************/25 26 // None27 28 /******************************************************************************/29 /* TYPE DEFINITIONS */30 /******************************************************************************/31 32 // None33 34 /*****************************************************************************/35 /* FUNCTION PROTOTYPES */36 /*****************************************************************************/37 22 38 23 // Doxygen grouping tags 39 /** @addtogroup SystemGroup System Utilities24 /** @addtogroup ErrorHandling 40 25 * @{ 41 26 */ -
trunk/psLib/src/sysUtils/psError.h
r530 r974 2 2 * 3 3 * @brief Contains the declarations for the error reporting functions 4 *5 * @ingroup SystemGroup6 4 * 7 5 * Error reporting functions shall be used to create log entries in the … … 10 8 * of error detected. 11 9 * 10 * @ingroup ErrorHandling 11 * 12 12 * @author Eric Van Alst, MHPCC 13 * 14 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-0 4-27 19:24:32$13 * 14 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-06-10 01:58:06 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 #define PS_ERROR_H 22 22 23 /******************************************************************************/ 24 /* DEFINE STATEMENTS */ 25 /******************************************************************************/ 26 27 // None 28 29 /******************************************************************************/ 30 /* TYPE DEFINITIONS */ 31 /******************************************************************************/ 32 33 // None 34 35 /*****************************************************************************/ 36 /* FUNCTION PROTOTYPES */ 37 /*****************************************************************************/ 38 39 /** @addtogroup SystemGroup System Utilities 23 /** @addtogroup ErrorHandling 40 24 * @{ 41 25 */ … … 56 40 ); 57 41 58 /* @} */ // End of Sys temGroupFunctions42 /* @} */ // End of SysUtils Functions 59 43 60 44 #endif -
trunk/psLib/src/sysUtils/psHash.h
r969 r974 12 12 * @author George Gusciora, MHPCC 13 13 * 14 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-06-10 01: 31:05$14 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-06-10 01:58:06 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 #define PS_HASH_H 22 22 23 /** \addtogroup HashTable Hash Table23 /** \addtogroup HashTable 24 24 * \{ 25 25 */ -
trunk/psLib/src/sysUtils/psLogMsg.h
r964 r974 1 1 #if !defined(PS_LOG_MSG_H) 2 2 #define PS_LOG_MSG_H 3 #endif4 3 5 4 /** \file psLogMsg.h 6 5 * \brief log messaging facilities 7 * \ingroup SystemGroup6 * \ingroup LogTrace 8 7 */ 9 8 10 9 #include <stdarg.h> 11 10 12 /** Functions **************************************************************/ 13 /** \addtogroup SystemGroup System Utilities 14 * \{ 11 /** @addtogroup LogTrace 12 * @{ 15 13 */ 16 14 … … 56 54 ; 57 55 58 /* \} */ // End of SystemGroup Functions59 56 60 57 ///< Status codes for log messages … … 71 68 PS_LOG_TO_STDOUT }; 72 69 70 /// @} 71 72 #endif -
trunk/psLib/src/sysUtils/psMemory.h
r876 r974 12 12 * @author Robert Lupton, Princeton University 13 13 * 14 * @ version $Revision: 1.16 $ $Name: not supported by cvs2svn $15 * @date $Date: 2004-06-04 23:46:48 $16 * 17 * @ ingroup SystemGroup System Utilities14 * @ingroup MemoryManagement 15 * 16 * @version $Revision: 1.17 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2004-06-10 01:58:06 $ 18 18 * 19 19 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 22 22 #include <stdio.h> // needed for FILE 23 #include <pthread.h> // we need a mutex to make this stuff thread safe. 24 25 /** @addtogroup MemoryManagement Memory Management Utilities 26 * @ingroup SystemGroup 27 * 28 * This is the generic memory management system put inbetween the user's high level code and the OS-level 29 * memory allocation routines. This system adds such features as callback routines for memory error events, 30 * tracing capabilities, and reference counting. 23 #include <pthread.h> // we need a mutex to make this stuff thread safe. 24 25 /** @addtogroup MemoryManagement 31 26 * @{ 32 27 */ -
trunk/psLib/src/sysUtils/psString.h
r545 r974 3 3 * @brief Contains the declarations of string utility functions 4 4 * 5 * @ingroup Sys temGroup5 * @ingroup SysUtils 6 6 * 7 7 * String utility functions defined shall provide basic string copying … … 9 9 * 10 10 * @author Eric Van Alst, MHPCC 11 * 12 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-0 4-28 22:19:20$11 * 12 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-10 01:58:06 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 37 37 38 38 // Doxygen group tags 39 /** @addtogroup Sys temGroup System Utilities39 /** @addtogroup SysUtils 40 40 * @{ 41 41 */ -
trunk/psLib/src/sysUtils/psTrace.h
r928 r974 6 6 /** \file psTrace.h 7 7 * \brief basic run-time trace facilities 8 * \ingroup SystemGroup8 * \ingroup LogTrace 9 9 */ 10 10 … … 23 23 Component; 24 24 25 /** Functions **************************************************************/ 26 /** \addtogroup SystemGroup System Utilities 25 /** \addtogroup LogTrace 27 26 * \{ 28 27 */ 28 29 30 /** Functions **************************************************************/ 29 31 30 32 /// Send a trace message -
trunk/psLib/src/sysUtils/psType.h
r831 r974 5 5 * This file defines common datatypes used throughout psLib. 6 6 * 7 * @ingroup DataContainer 8 * 7 9 * @author Robert DeSonia, MHPCC 8 10 * @author Ross Harman, MHPCC 9 11 * 10 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $11 * @date $Date: 2004-06- 02 23:29:14$12 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-10 01:58:06 $ 12 14 * 13 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 19 21 #include <complex.h> 20 22 #include <stdint.h> 23 24 /// @addtogroup DataContainer 25 /// @{ 21 26 22 27 /******************************************************************************/ … … 114 119 psType; 115 120 121 /// @} 122 116 123 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
