IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 15, 2004, 1:52:34 PM (22 years ago)
Author:
desonia
Message:

Changed psSort and psSortIndex to psVectorSort and psVectorSortIndex as well as added support for all non-complex datatypes.

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

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sysUtils/psMemory.c

    r1204 r1233  
    88 *  @author Robert Lupton, Princeton University
    99 *
    10  *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2004-07-09 02:45:42 $
     10 *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2004-07-15 23:52:34 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    214214}
    215215
    216 int psMemCheckCorruption(int abort_on_error)
     216int psMemCheckCorruption(bool abort_on_error)
    217217{
    218218    int nbad = 0;                       // number of bad blocks
  • trunk/psLib/src/sysUtils/psMemory.h

    r1204 r1233  
    1414 *  @ingroup MemoryManagement
    1515 *
    16  *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
    17  *  @date $Date: 2004-07-09 02:45:42 $
     16 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
     17 *  @date $Date: 2004-07-15 23:52:34 $
    1818 *
    1919 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2121
    2222#include <stdio.h>                      // needed for FILE
     23#include <stdbool.h>
    2324#include <pthread.h>                    // we need a mutex to make this stuff thread safe.
    2425
     
    208209 */
    209210int psMemCheckCorruption(
    210     int abort_on_error              ///< Abort on detecting corruption?
     211    bool abort_on_error              ///< Abort on detecting corruption?
    211212);
    212213
Note: See TracChangeset for help on using the changeset viewer.