IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 20837


Ignore:
Timestamp:
Nov 25, 2008, 4:37:26 PM (17 years ago)
Author:
Paul Price
Message:

Ensure thread jobs have the expected type.
Harvest the INSPECT jobs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackLoop.c

    r20828 r20837  
    771771        psThreadJob *job;               // Completed job
    772772        while ((job = psThreadJobGetDone())) {
     773            psAssert(strcmp(job->type, "PPSTACK_INITIAL_COMBINE") == 0,
     774                     "Job has incorrect type: %s", job->type);
    773775            psArray *results = job->results; // Results of job
    774776            for (int i = 0; i < num; i++) {
     
    828830        }
    829831
    830         if (!psThreadPoolWait(false)) {
     832        if (!psThreadPoolWait(true)) {
    831833            psError(PS_ERR_UNKNOWN, false, "Unable to concatenate inspection lists.");
    832834            psFree(subKernels);
Note: See TracChangeset for help on using the changeset viewer.