IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 18, 2010, 6:42:01 PM (16 years ago)
Author:
Paul Price
Message:

Reworked ppStack to be better about error codes and their translation to exit codes.

Location:
trunk/ppStack/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src

    • Property svn:ignore
      •  

        old new  
        1010stamp-h1
        1111ppStackVersionDefinitions.h
         12ppStackErrorCodes.c
         13ppStackErrorCodes.h
  • trunk/ppStack/src/ppStackCombinePrepare.c

    r26076 r27004  
    2020    ppStackThread *thread = stack->threads->data[0]; // Representative thread
    2121    if (!pmReadoutStackSetOutputSize(&col0, &row0, &numCols, &numRows, thread->readouts)) {
    22         psError(PS_ERR_UNKNOWN, false, "problem setting output readout size.");
     22        psError(PPSTACK_ERR_ARGUMENTS, false, "problem setting output readout size.");
    2323        return false;
    2424    }
     
    4545
    4646    if (!pmReadoutStackDefineOutput(options->outRO, col0, row0, numCols, numRows, true, true, maskBad)) {
    47         psError(PS_ERR_UNKNOWN, false, "Unable to prepare output.");
     47        psError(PPSTACK_ERR_ARGUMENTS, false, "Unable to prepare output.");
    4848        return false;
    4949    }
Note: See TracChangeset for help on using the changeset viewer.