IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 9, 2004, 11:59:03 AM (22 years ago)
Author:
desonia
Message:

changed the format of the log message, per bugzilla report #189.

Location:
trunk/psLib/src/collections
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/Makefile

    r1420 r1761  
    33##  Makefile:   collections
    44##
    5 ##  $Revision: 1.28 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-08-09 20:29:43 $
     5##  $Revision: 1.29 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-09-09 21:59:03 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4040OBJS = $(addprefix makedir/,$(SRC_OBJS))
    4141
     42HEADERS = $(SRC_OBJS:.o=.h)
     43
     44
    4245# Define PHONY target "all" which will make all the necessary items
    4346
     
    5457
    5558install: $(TARGET_STATIC)
    56         install *.h $(includedir)
     59        install $(HEADERS) $(includedir)
     60
     61psCollectionsErrors.h: psCollectionsErrors.dat
     62        perl ../parseErrorCodes.pl --data=$? $@
    5763
    5864# Define PHONY target "distclean" which will cleanup the distribution
  • trunk/psLib/src/collections/psVector.c

    r1440 r1761  
    88*
    99*  @author Ross Harman, MHPCC
    10 *
    11 *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-08-09 23:34:57 $
     10*  @author Robert DeSonia, MHPCC
     11*
     12*  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2004-09-09 21:59:03 $
    1314*
    1415*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1516*/
    1617
    17 /******************************************************************************/
    18 
    19 /*  INCLUDE FILES                                                             */
    20 
    21 /******************************************************************************/
    2218#include <string.h>                        // for memcpy
    2319#include <stdlib.h>
     
    2925#include "psLogMsg.h"
    3026#include "psCompare.h"
    31 
    32 /******************************************************************************/
    33 
    34 /*  DEFINE STATEMENTS                                                         */
    35 
    36 /******************************************************************************/
    37 
    38 // None
    39 
    40 /******************************************************************************/
    41 
    42 /*  TYPE DEFINITIONS                                                          */
    43 
    44 /******************************************************************************/
    45 
    46 // None
    47 
    48 /*****************************************************************************/
    49 
    50 /*  GLOBAL VARIABLES                                                         */
    51 
    52 /*****************************************************************************/
    53 
    54 // None
    55 
    56 /*****************************************************************************/
    57 
    58 /*  FILE STATIC VARIABLES                                                    */
    59 
    60 /*****************************************************************************/
    61 
    62 // None
    63 
    64 /*****************************************************************************/
    65 
    66 /*  FUNCTION IMPLEMENTATION - LOCAL                                          */
    67 
    68 /*****************************************************************************/
     27#include "psCollectionsErrors.h"
     28
    6929static void vectorFree(psVector* restrict psVec);
    7030
    71 /*****************************************************************************/
    72 
    73 /* FUNCTION IMPLEMENTATION - PUBLIC                                          */
    74 
    75 /*****************************************************************************/
     31// FUNCTION IMPLEMENTATION - PUBLIC
     32
    7633psVector* psVectorAlloc(unsigned int nalloc, psElemType elemType)
    7734{
Note: See TracChangeset for help on using the changeset viewer.