IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 34243


Ignore:
Timestamp:
Jul 31, 2012, 11:39:29 AM (14 years ago)
Author:
eugene
Message:

merge changes from trunk

Location:
branches/eam_branches/ipp-20120627/psLib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20120627/psLib/m4/ipp_stdopts.m4

    r34139 r34243  
    77      [AS_HELP_STRING(--enable-optimize,enable compiler optimization)],
    88      [AC_MSG_RESULT(compile optimization enabled)
    9        CFLAGS="-pipe -O2 -g -DPS_NO_TRACE"],
     9          CFLAGS="-pipe -O2 -g -DPS_NO_TRACE"],
    1010      [AC_MSG_RESULT([compile optimization disabled])
    11         CFLAGS="-pipe -O0 -g"
     11          CFLAGS="-pipe -O0 -g"
    1212      ]
    1313    )
     
    2222        fi
    2323      ],
    24       [AC_MSG_RESULT([compile optimization disabled])
     24      [AC_MSG_RESULT([debug build disabled])
    2525        if test x"${CFLAGS}" == x; then
    2626          CFLAGS="-Wall -Werror"
  • branches/eam_branches/ipp-20120627/psLib/src/imageops/psImageMapFit.c

    r30078 r34243  
    317317        psFree (A);
    318318        psFree (B);
     319        psFree (Empty);
    319320        return true;
    320321    }
     
    408409        if (!*pGoodFit) {
    409410            psWarning ("bad fit to image map, try something else");
     411            psFree(resid);
     412            if (!inMask) psFree (mask);
    410413            return true;
    411414        }
  • branches/eam_branches/ipp-20120627/psLib/src/sys/psThread.c

    r33089 r34243  
    343343            psThread *thread = pool->data[i];
    344344            if (thread->fault) {
     345                // we had a fault on this thread -- clear the fault and keep going, but record
     346                // the fault.
    345347                numFaults++;
     348                thread->fault = false;
    346349            }
    347350        }
Note: See TracChangeset for help on using the changeset viewer.