IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 7, 2007, 1:58:17 PM (19 years ago)
Author:
jhoblitt
Message:

update psAbort() API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/extras/psPipe.c

    r10610 r11687  
    177177                return 0x100;
    178178            default:
    179                 psAbort ("psPipeClose", "unexpected response to waitpid: %d\n", result);
     179                psAbort("unexpected response to waitpid: %d\n", result);
    180180            }
    181181            break;
     
    187187        default:
    188188            if (result != pipe->pid) {
    189                 psAbort ("psPipeClose", "waitpid error: mis-matched PID (%d vs %d).  programming error\n", result, pipe->pid);
     189                psAbort("waitpid error: mis-matched PID (%d vs %d).  programming error\n", result, pipe->pid);
    190190            }
    191191            if (WIFEXITED(wait_status)) {
     
    202202            }
    203203            if (WIFSTOPPED(wait_status)) {
    204                 psAbort ("psPipeClose", "waitpid returns 'stopped' programming error\n");
     204                psAbort("waitpid returns 'stopped' programming error\n");
    205205            }
    206206        }
Note: See TracChangeset for help on using the changeset viewer.