IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 8, 2007, 3:40:08 PM (19 years ago)
Author:
jhoblitt
Message:

gcc attribute cleanup

Location:
trunk/psLib/src/astro
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psCoord.h

    r13839 r14452  
    88 *  @author GLG, MHPCC
    99 *
    10  *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2007-06-15 01:03:22 $
     10 *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2007-08-09 01:40:07 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    157157 *  @return psPlane*     resulting plane structure.
    158158 */
    159 psPlane* psPlaneAlloc(void);
     159psPlane* psPlaneAlloc(void) PS_ATTR_MALLOC;
    160160
    161161/** Allocates a psSphere
     
    163163 *  @return psSphere*     resulting sphere structure.
    164164 */
    165 psSphere* psSphereAlloc(void);
     165psSphere* psSphereAlloc(void) PS_ATTR_MALLOC;
    166166
    167167/** Allocates a psCube
     
    169169 *  @return psCube*     resulting cubic structure.
    170170 */
    171 psCube* psCubeAlloc(void);
     171psCube* psCubeAlloc(void) PS_ATTR_MALLOC;
    172172
    173173/** Allocates a psPlaneTransform transform.
     
    179179    int order1,                        ///< The order of the x term in the transform.
    180180    int order2                         ///< The order of the y term in the transform.
    181 );
     181) PS_ATTR_MALLOC;
    182182
    183183/** Applies the psPlaneTransform transform to a specified coordinate
     
    201201    int order3,                        ///< The order of the y term in the transform.
    202202    int order4                         ///< The order of the z term in the transform.
    203 );
     203) PS_ATTR_MALLOC;
    204204
    205205
     
    226226    double Ys,                         ///< Scale in y-dimension
    227227    psProjectionType type
    228 );
     228) PS_ATTR_MALLOC;
    229229
    230230/** Checks the type of a particular pointer.
  • trunk/psLib/src/astro/psEarthOrientation.h

    r12432 r14452  
    88*  @author Robert Daniel DeSonia, MHPCC
    99*
    10 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2007-03-14 02:31:41 $
     10*  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2007-08-09 01:40:07 $
    1212*
    1313*  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
     
    6363
    6464/** Allocates a new psEarthPole structure.  */
    65 psEarthPole *psEarthPoleAlloc(void);
     65psEarthPole *psEarthPoleAlloc(void) PS_ATTR_MALLOC;
    6666
    6767/** Calculates the apparent position of a star, given its actual position and the
  • trunk/psLib/src/astro/psSphereOps.h

    r11248 r14452  
    66 *  @author David Robbins, MHPCC
    77 *
    8  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-01-23 22:47:22 $
     8 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2007-08-09 01:40:07 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6969    double deltaP,                     ///< north pole longitude
    7070    double phiP                        ///< defines the longitude in the input system of the equatorial intersection between the two systems (e.g, the first point of Ares).
    71 );
     71) PS_ATTR_MALLOC;
    7272
    7373/** Checks the type of a particular pointer.
  • trunk/psLib/src/astro/psTime.h

    r13950 r14452  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2007-06-22 02:28:48 $
     13 *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2007-08-09 01:40:07 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    108108psTime* psTimeAlloc(
    109109    psTimeType type                    ///< Type of time to create (UTC or TAI).
    110 );
     110) PS_ATTR_MALLOC;
    111111
    112112
Note: See TracChangeset for help on using the changeset viewer.