vote up 0 vote down star

I'm on the path to write a QCoreApplication supposed to create an external process via Qprocess.

I've just noticed that even if the waitForStarted() is called and the process state is Running before the event handler is executing, the external process does not start until the exec() method is invoked on the QCoreApplication.

That said, is it possible to postpone the execution of a routine to the event handling start (in which to instantiate a QProcess), or the only viable way is to create a one shot QTimer?

flag

The question is ambiguous – PiedPiper Nov 6 '08 at 10:18
I hope it's more understandable now :-) – Nicola Bonelli Nov 6 '08 at 10:28
It might be more clear if you state that you want the external process to be confirmed before the event loop starts for the main process. – cjhuitt Nov 6 '08 at 17:03
I agree with you :-) – Nicola Bonelli Nov 6 '08 at 19:20

1 Answer

vote up 1 vote down check

After a short investigation it comes out the method QCoreApplication::processEvents() that processes all pending events for the calling thread. In the following code

int main(int argc, char *argv[])
{
    QCoreApplication app(argc, argv);

    QProcess abc(....);
    abc.start(...);

    app.processEvents();

    //////////////////////////////////////////////////////
    // is the process really running ? //
    //////////////////////////////////////////////////////

    return  app.exec();
}

such method is required for the section is-the-process-really-running to let it find the abc process up and running. Otherwise abc will be started when the event loop processes the start event.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.