IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11617


Ignore:
Timestamp:
Feb 2, 2007, 7:54:08 PM (19 years ago)
Author:
jhoblitt
Message:

include psMemory.h last

Location:
trunk/psLib/src/sys
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psConfigure.c

    r11265 r11617  
    1313 *  @author Robert DeSonia, MHPCC
    1414 *
    15  *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
    16  *  @date $Date: 2007-01-24 22:14:48 $
     15 *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
     16 *  @date $Date: 2007-02-03 05:54:08 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2626#include <stdlib.h>
    2727#include <string.h>
    28 #include "psMemory.h"
    2928#include "psTrace.h"
    3029#include "psString.h"
     
    3332#include "psError.h"
    3433#include "psConfigure.h"
     34#include "psMemory.h"
    3535
    3636static char *memCheckName = NULL;       // Filename to which to write results of mem check
  • trunk/psLib/src/sys/psError.c

    r11265 r11617  
    1111 *  @author Eric Van Alst, MHPCC
    1212 *
    13  *  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2007-01-24 22:14:48 $
     13 *  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2007-02-03 05:54:08 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2727#include "psLogMsg.h"
    2828#include "psError.h"
    29 #include "psMemory.h"
    3029#include "psString.h"
    3130#include "psTrace.h"
    3231#include "psAbort.h"
     32#include "psMemory.h"
    3333
    3434#define MAX_STRING_LENGTH 2048
  • trunk/psLib/src/sys/psLine.c

    r10999 r11617  
    66#include <stdarg.h>
    77
    8 #include "psMemory.h"
    98#include "psAssert.h"
    109#include "psConstants.h"
    1110#include "psLine.h"
     11#include "psMemory.h"
    1212
    1313static void lineFree(psLine *line)
  • trunk/psLib/src/sys/psLogMsg.c

    r10999 r11617  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.64 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2007-01-09 22:38:53 $
     13 *  @version $Revision: 1.65 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2007-02-03 05:54:08 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3131#include <fcntl.h>
    3232
    33 #include "psMemory.h"
    3433#include "psLogMsg.h"
    3534#include "psError.h"
     
    3736#include "psList.h"
    3837#include "psString.h"
     38#include "psMemory.h"
    3939
    4040
  • trunk/psLib/src/sys/psMemory.c

    r11419 r11617  
    1010*  @author Joshua Hoblitt, University of Hawaii
    1111*
    12 *  @version $Revision: 1.91 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2007-01-30 04:28:08 $
     12*  @version $Revision: 1.92 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2007-02-03 05:54:08 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3232#endif
    3333
     34#include "psError.h"    // for psErrorStackPrint() only
    3435#include "psMemory.h"
    35 #include "psError.h"    // for psErrorStackPrint() only
    3636
    3737#define MUTEX_LOCK(mutexPtr) \
  • trunk/psLib/src/sys/psSlurp.c

    r11154 r11617  
    55 *  @author Joshua Hoblitt, University of Hawaii
    66 *
    7  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2007-01-19 04:31:06 $
     7 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2007-02-03 05:54:08 $
    99 *
    1010 *  Copyright 2006 University of Hawaii
     
    2020#include "psType.h"
    2121#include "psError.h"
     22#include "psSlurp.h"
    2223#include "psMemory.h"
    23 #include "psSlurp.h"
    2424
    2525#define SLURP_SIZE 4096
  • trunk/psLib/src/sys/psString.c

    r10999 r11617  
    1313 *  @author David Robbins, MHPCC
    1414 *
    15  *  @version $Revision: 1.48 $ $Name: not supported by cvs2svn $
    16  *  @date $Date: 2007-01-09 22:38:53 $
     15 *  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
     16 *  @date $Date: 2007-02-03 05:54:08 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2626#include <string.h>
    2727#include <limits.h>
     28
    2829#include "psString.h"
    29 #include "psMemory.h"
    3030#include "psError.h"
    3131#include "psAssert.h"
    3232#include "psAbort.h"
    33 
     33#include "psMemory.h"
    3434
    3535
  • trunk/psLib/src/sys/psTrace.c

    r11520 r11617  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.82 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2007-02-01 02:44:15 $
     11 *  @version $Revision: 1.83 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2007-02-03 05:54:08 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5353
    5454#include "psAssert.h"
    55 #include "psMemory.h"
    5655#include "psTrace.h"
    5756#include "psString.h"
     
    5958#include "psLogMsg.h"
    6059#include "psMetadata.h"
     60#include "psMemory.h"
    6161
    6262#define MAX_HOSTNAME_LENGTH 256
  • trunk/psLib/src/sys/psType.c

    r11015 r11617  
    77*  @author Joshua Hoblitt, University of Hawaii
    88*
    9 *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2007-01-11 00:20:31 $
     9*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2007-02-03 05:54:08 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2020
    2121#include "psType.h"
    22 
    2322#include "psBitSet.h"
    2423#include "psFits.h"
     
    3130#include "psRegion.h"
    3231#include "psHistogram.h"
     32#include "psMemory.h"
    3333
    3434bool psMemCheckType(psDataType type,
Note: See TracChangeset for help on using the changeset viewer.