Changeset 33089 for trunk/psModules
- Timestamp:
- Jan 11, 2012, 10:16:48 AM (14 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 10 edited
-
camera/pmReadoutFake.c (modified) (1 diff)
-
detrend/pmBias.c (modified) (1 diff)
-
detrend/pmDark.c (modified) (1 diff)
-
detrend/pmFlatField.c (modified) (1 diff)
-
detrend/pmShutterCorrection.c (modified) (1 diff)
-
imcombine/pmStackReject.c (modified) (1 diff)
-
imcombine/pmSubtraction.c (modified) (2 diffs)
-
imcombine/pmSubtractionEquation.c (modified) (1 diff)
-
imcombine/pmSubtractionEquation.v0.c (modified) (1 diff)
-
imcombine/pmSubtractionMatch.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmReadoutFake.c
r32347 r33089 314 314 } 315 315 } 316 if (!psThreadPoolWait(true )) {316 if (!psThreadPoolWait(true, true)) { 317 317 psError(PS_ERR_UNKNOWN, false, "Error waiting for threads."); 318 318 psFree(groups); -
trunk/psModules/src/detrend/pmBias.c
r29833 r33089 154 154 if (threaded) { 155 155 // wait here for the threaded jobs to finish 156 if (!psThreadPoolWait(true )) {156 if (!psThreadPoolWait(true, true)) { 157 157 psError(PS_ERR_UNKNOWN, false, "Unable to apply bias correction."); 158 158 return false; -
trunk/psModules/src/detrend/pmDark.c
r28405 r33089 601 601 if (threaded) { 602 602 // wait here for the threaded jobs to finish 603 if (!psThreadPoolWait(true )) {603 if (!psThreadPoolWait(true, true)) { 604 604 psError(PS_ERR_UNKNOWN, false, "Unable to apply dark."); 605 605 psFree(orders); -
trunk/psModules/src/detrend/pmFlatField.c
r28405 r33089 161 161 if (threaded) { 162 162 // wait here for the threaded jobs to finish 163 if (!psThreadPoolWait(true )) {163 if (!psThreadPoolWait(true, true)) { 164 164 psError(PS_ERR_UNKNOWN, false, "Unable to flat-field image."); 165 165 return false; -
trunk/psModules/src/detrend/pmShutterCorrection.c
r29004 r33089 805 805 if (threaded) { 806 806 // wait here for the threaded jobs to finish 807 if (!psThreadPoolWait(true )) {807 if (!psThreadPoolWait(true, true)) { 808 808 psError(PS_ERR_UNKNOWN, false, "Unable to apply shutter correction."); 809 809 psFree(shutterImage); -
trunk/psModules/src/imcombine/pmStackReject.c
r31435 r33089 313 313 } 314 314 315 if (!psThreadPoolWait(false )) {315 if (!psThreadPoolWait(false, true)) { 316 316 psError(psErrorCodeLast(), false, "Unable to grow bad pixels."); 317 317 psFree(source); -
trunk/psModules/src/imcombine/pmSubtraction.c
r32695 r33089 905 905 } 906 906 } 907 if (!psThreadPoolWait(true )) {907 if (!psThreadPoolWait(true, true)) { 908 908 psError(psErrorCodeLast(), false, "Error waiting for threads."); 909 909 return false; … … 1427 1427 } 1428 1428 1429 if (!psThreadPoolWait(false )) {1429 if (!psThreadPoolWait(false, true)) { 1430 1430 psError(psErrorCodeLast(), false, "Error waiting for threads."); 1431 1431 return false; -
trunk/psModules/src/imcombine/pmSubtractionEquation.c
r30622 r33089 958 958 } 959 959 960 if (!psThreadPoolWait(true )) {960 if (!psThreadPoolWait(true, true)) { 961 961 psError(psErrorCodeLast(), false, "Error waiting for threads."); 962 962 return false; -
trunk/psModules/src/imcombine/pmSubtractionEquation.v0.c
r30622 r33089 882 882 } 883 883 884 if (!psThreadPoolWait(true )) {884 if (!psThreadPoolWait(true, true)) { 885 885 psError(psErrorCodeLast(), false, "Error waiting for threads."); 886 886 return false; -
trunk/psModules/src/imcombine/pmSubtractionMatch.c
r31671 r33089 1091 1091 } 1092 1092 1093 if (!psThreadPoolWait(true )) {1093 if (!psThreadPoolWait(true, true)) { 1094 1094 psError(psErrorCodeLast(), false, "Error waiting for threads."); 1095 1095 psFree(models);
Note:
See TracChangeset
for help on using the changeset viewer.
