- Timestamp:
- Dec 25, 2009, 12:25:01 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/corelib/io/qprocess_os2.cpp
r423 r440 190 190 APIRET rc = DosPostEventSem(instance->eventSem); 191 191 Q_ASSERT(rc == NO_ERROR || rc == ERROR_ALREADY_POSTED); 192 192 193 } 193 194 … … 342 343 FALSE); 343 344 Q_ASSERT(rc == NO_ERROR); 345 344 346 345 347 lastProcKey = InvalidProcKey; … … 502 504 case QProcessPrivate::Async: 503 505 case QProcessPrivate::SigChild: 504 const char *method ;506 const char *method; 505 507 switch(type) { 506 508 case QProcessPrivate::InPipe: … … 556 558 APIRET rc = DosCreateEventSem(0, &waitSem, DCE_AUTORESET, FALSE); 557 559 Q_ASSERT(rc == NO_ERROR); 560 558 561 } 559 562 } … … 562 565 const char *name /*= 0*/) 563 566 { 564 APIRET rc ;567 APIRET rc; 565 568 char pathBuf[CCHMAXPATH]; 566 569 … … 655 658 if (channel.type == Channel::Normal) { 656 659 // we're piping this channel to our own process 657 PipeType type ;660 PipeType type; 658 661 if (&channel == &stdinChannel) 659 662 type = InPipe;
Note:
See TracChangeset
for help on using the changeset viewer.