Changeset 34243
- Timestamp:
- Jul 31, 2012, 11:39:29 AM (14 years ago)
- Location:
- branches/eam_branches/ipp-20120627/psLib
- Files:
-
- 3 edited
-
m4/ipp_stdopts.m4 (modified) (2 diffs)
-
src/imageops/psImageMapFit.c (modified) (2 diffs)
-
src/sys/psThread.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20120627/psLib/m4/ipp_stdopts.m4
r34139 r34243 7 7 [AS_HELP_STRING(--enable-optimize,enable compiler optimization)], 8 8 [AC_MSG_RESULT(compile optimization enabled) 9 CFLAGS="-pipe -O2 -g -DPS_NO_TRACE"],9 CFLAGS="-pipe -O2 -g -DPS_NO_TRACE"], 10 10 [AC_MSG_RESULT([compile optimization disabled]) 11 CFLAGS="-pipe -O0 -g"11 CFLAGS="-pipe -O0 -g" 12 12 ] 13 13 ) … … 22 22 fi 23 23 ], 24 [AC_MSG_RESULT([ compile optimizationdisabled])24 [AC_MSG_RESULT([debug build disabled]) 25 25 if test x"${CFLAGS}" == x; then 26 26 CFLAGS="-Wall -Werror" -
branches/eam_branches/ipp-20120627/psLib/src/imageops/psImageMapFit.c
r30078 r34243 317 317 psFree (A); 318 318 psFree (B); 319 psFree (Empty); 319 320 return true; 320 321 } … … 408 409 if (!*pGoodFit) { 409 410 psWarning ("bad fit to image map, try something else"); 411 psFree(resid); 412 if (!inMask) psFree (mask); 410 413 return true; 411 414 } -
branches/eam_branches/ipp-20120627/psLib/src/sys/psThread.c
r33089 r34243 343 343 psThread *thread = pool->data[i]; 344 344 if (thread->fault) { 345 // we had a fault on this thread -- clear the fault and keep going, but record 346 // the fault. 345 347 numFaults++; 348 thread->fault = false; 346 349 } 347 350 }
Note:
See TracChangeset
for help on using the changeset viewer.
