Changeset 11617
- Timestamp:
- Feb 2, 2007, 7:54:08 PM (19 years ago)
- Location:
- trunk/psLib/src/sys
- Files:
-
- 9 edited
-
psConfigure.c (modified) (3 diffs)
-
psError.c (modified) (2 diffs)
-
psLine.c (modified) (1 diff)
-
psLogMsg.c (modified) (3 diffs)
-
psMemory.c (modified) (2 diffs)
-
psSlurp.c (modified) (2 diffs)
-
psString.c (modified) (2 diffs)
-
psTrace.c (modified) (3 diffs)
-
psType.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psConfigure.c
r11265 r11617 13 13 * @author Robert DeSonia, MHPCC 14 14 * 15 * @version $Revision: 1.2 1$ $Name: not supported by cvs2svn $16 * @date $Date: 2007-0 1-24 22:14:48 $15 * @version $Revision: 1.22 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2007-02-03 05:54:08 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 26 26 #include <stdlib.h> 27 27 #include <string.h> 28 #include "psMemory.h"29 28 #include "psTrace.h" 30 29 #include "psString.h" … … 33 32 #include "psError.h" 34 33 #include "psConfigure.h" 34 #include "psMemory.h" 35 35 36 36 static char *memCheckName = NULL; // Filename to which to write results of mem check -
trunk/psLib/src/sys/psError.c
r11265 r11617 11 11 * @author Eric Van Alst, MHPCC 12 12 * 13 * @version $Revision: 1.4 2$ $Name: not supported by cvs2svn $14 * @date $Date: 2007-0 1-24 22:14:48 $13 * @version $Revision: 1.43 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2007-02-03 05:54:08 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 27 27 #include "psLogMsg.h" 28 28 #include "psError.h" 29 #include "psMemory.h"30 29 #include "psString.h" 31 30 #include "psTrace.h" 32 31 #include "psAbort.h" 32 #include "psMemory.h" 33 33 34 34 #define MAX_STRING_LENGTH 2048 -
trunk/psLib/src/sys/psLine.c
r10999 r11617 6 6 #include <stdarg.h> 7 7 8 #include "psMemory.h"9 8 #include "psAssert.h" 10 9 #include "psConstants.h" 11 10 #include "psLine.h" 11 #include "psMemory.h" 12 12 13 13 static void lineFree(psLine *line) -
trunk/psLib/src/sys/psLogMsg.c
r10999 r11617 11 11 * @author GLG, MHPCC 12 12 * 13 * @version $Revision: 1.6 4$ $Name: not supported by cvs2svn $14 * @date $Date: 2007-0 1-09 22:38:53$13 * @version $Revision: 1.65 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2007-02-03 05:54:08 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include <fcntl.h> 32 32 33 #include "psMemory.h"34 33 #include "psLogMsg.h" 35 34 #include "psError.h" … … 37 36 #include "psList.h" 38 37 #include "psString.h" 38 #include "psMemory.h" 39 39 40 40 -
trunk/psLib/src/sys/psMemory.c
r11419 r11617 10 10 * @author Joshua Hoblitt, University of Hawaii 11 11 * 12 * @version $Revision: 1.9 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2007-0 1-30 04:28:08 $12 * @version $Revision: 1.92 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2007-02-03 05:54:08 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 32 32 #endif 33 33 34 #include "psError.h" // for psErrorStackPrint() only 34 35 #include "psMemory.h" 35 #include "psError.h" // for psErrorStackPrint() only36 36 37 37 #define MUTEX_LOCK(mutexPtr) \ -
trunk/psLib/src/sys/psSlurp.c
r11154 r11617 5 5 * @author Joshua Hoblitt, University of Hawaii 6 6 * 7 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 1-19 04:31:06$7 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-02-03 05:54:08 $ 9 9 * 10 10 * Copyright 2006 University of Hawaii … … 20 20 #include "psType.h" 21 21 #include "psError.h" 22 #include "psSlurp.h" 22 23 #include "psMemory.h" 23 #include "psSlurp.h"24 24 25 25 #define SLURP_SIZE 4096 -
trunk/psLib/src/sys/psString.c
r10999 r11617 13 13 * @author David Robbins, MHPCC 14 14 * 15 * @version $Revision: 1.4 8$ $Name: not supported by cvs2svn $16 * @date $Date: 2007-0 1-09 22:38:53$15 * @version $Revision: 1.49 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2007-02-03 05:54:08 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 26 26 #include <string.h> 27 27 #include <limits.h> 28 28 29 #include "psString.h" 29 #include "psMemory.h"30 30 #include "psError.h" 31 31 #include "psAssert.h" 32 32 #include "psAbort.h" 33 33 #include "psMemory.h" 34 34 35 35 -
trunk/psLib/src/sys/psTrace.c
r11520 r11617 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.8 2$ $Name: not supported by cvs2svn $12 * @date $Date: 2007-02-0 1 02:44:15$11 * @version $Revision: 1.83 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2007-02-03 05:54:08 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 53 53 54 54 #include "psAssert.h" 55 #include "psMemory.h"56 55 #include "psTrace.h" 57 56 #include "psString.h" … … 59 58 #include "psLogMsg.h" 60 59 #include "psMetadata.h" 60 #include "psMemory.h" 61 61 62 62 #define MAX_HOSTNAME_LENGTH 256 -
trunk/psLib/src/sys/psType.c
r11015 r11617 7 7 * @author Joshua Hoblitt, University of Hawaii 8 8 * 9 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $10 * @date $Date: 2007-0 1-11 00:20:31$9 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2007-02-03 05:54:08 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 20 20 21 21 #include "psType.h" 22 23 22 #include "psBitSet.h" 24 23 #include "psFits.h" … … 31 30 #include "psRegion.h" 32 31 #include "psHistogram.h" 32 #include "psMemory.h" 33 33 34 34 bool psMemCheckType(psDataType type,
Note:
See TracChangeset
for help on using the changeset viewer.
