IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 5, 2007, 1:56:33 PM (19 years ago)
Author:
Paul Price
Message:

Adding additional information for tracking memory leaks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageStructManip.h

    r12998 r15456  
    55*  @author Robert DeSonia, MHPCC
    66*
    7 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    8 *  @date $Date: 2007-04-24 22:27:17 $
     7*  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     8*  @date $Date: 2007-11-05 23:56:33 $
    99*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    1010*/
     
    3535 *
    3636 */
     37#ifdef DOXYGEN
    3738psImage* psImageSubset(
    3839    psImage* image,                    ///< Parent image.
    3940    psRegion region                    ///< region of subimage
    4041);
     42#else // ifdef DOXYGEN
     43psImage* p_psImageSubset(
     44    const char *file,                   ///< File of caller
     45    unsigned int lineno,                ///< Line number of caller
     46    const char *func,                   ///< Function name of caller
     47    psImage* image,                    ///< Parent image.
     48    psRegion region                    ///< region of subimage
     49) PS_ATTR_MALLOC;
     50#define psImageSubset(image, region) \
     51      p_psImageSubset(__FILE__, __LINE__, __func__, image, region)
     52#endif // ifdef DOXYGEN
    4153
    4254/** Makes a copy of the image view on the parent:
Note: See TracChangeset for help on using the changeset viewer.