IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 20466


Ignore:
Timestamp:
Oct 29, 2008, 11:47:56 AM (18 years ago)
Author:
Paul Price
Message:

Need to turn off threads at the psLib level --- otherwise, we end up
with threads on top of threads, and everything is executing
psThreadPoolWait, waiting for some other mythical thread to complete
the thread's work. Don't ask why this ever worked before..........

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmSubtraction.c

    r20215 r20466  
    12291229#endif
    12301230
     1231    // Need to turn off threads at the psLib level --- otherwise, we end up with threads on top of threads,
     1232    // and everything is executing psThreadPoolWait, waiting for some other mythical thread to complete the
     1233    // thread's work.
     1234    psImageConvolveSetThreads(false);
     1235
    12311236    for (int j = yMin; j < yMax; j += fullSize) {
    12321237        int ySubMax = PS_MIN(j + fullSize, yMax); // Range for subregion of interest
Note: See TracChangeset for help on using the changeset viewer.