IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

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

    r1426 r1440  
    1515 *  @ingroup MemoryManagement
    1616 *
    17  *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
    18  *  @date $Date: 2004-08-09 22:44:25 $
     17 *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
     18 *  @date $Date: 2004-08-09 23:34:58 $
    1919 *
    2020 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6464{
    6565    const void *startblock;     ///< initialised to p_psMEMMAGIC
    66     struct psMemBlock *previousBlock;   ///< previous block in allocation list
    67     struct psMemBlock *nextBlock;       ///< next block allocation list
     66    struct psMemBlock* previousBlock;   ///< previous block in allocation list
     67    struct psMemBlock* nextBlock;       ///< next block allocation list
    6868    psFreeFcn freeFcn;          ///< deallocator.  If NULL, use generic deallocation.
    6969    size_t userMemorySize;      ///< the size of the user-portion of the memory block
     
    8282 *  @ingroup memCallback
    8383 */
    84 typedef psMemoryId(*psMemAllocateCallback) (const psMemBlock * ptr      ///< the psMemBlock just allocated
     84typedef psMemoryId(*psMemAllocateCallback) (const psMemBlock* ptr      ///< the psMemBlock just allocated
    8585                                           );
    8686
     
    9090 *  @ingroup memCallback
    9191 */
    92 typedef psMemoryId(*psMemFreeCallback) (const psMemBlock * ptr  ///< the psMemBlock being freed
     92typedef psMemoryId(*psMemFreeCallback) (const psMemBlock* ptr  ///< the psMemBlock being freed
    9393                                       );
    9494
     
    100100 *  @ingroup memCallback
    101101 */
    102 typedef void (*psMemProblemCallback) (const psMemBlock * ptr,   ///< the pointer to the problematic memory
     102typedef void (*psMemProblemCallback) (const psMemBlock* ptr,   ///< the pointer to the problematic memory
    103103                                      // block.
    104104                                      const char *file, ///< the file in which the problem originated
     
    195195 */
    196196int psMemCheckLeaks(psMemoryId id0,     ///< don't list blocks with id < id0
    197                     psMemBlock *** arr, ///< pointer to array of pointers to leaked blocks, or NULL
     197                    psMemBlock* ** arr, ///< pointer to array of pointers to leaked blocks, or NULL
    198198                    FILE * fd   ///< print list of leaks to fd (or NULL)
    199199                   );
Note: See TracChangeset for help on using the changeset viewer.