PDA

View Full Version : Pause executing QProcess



bravetanveer
3rd December 2006, 05:22
Can we pause the execution of a process defined using QProcess?

Requirement is, process, should save the context till it is restarted. When restarted, should start from the same point where it was paused.....

wysota
3rd December 2006, 08:55
Under Unix you can send it a SIGSTOP signal. If you're not using Unix then you need to introduce that stopping functionality to the process you call - QProcess can't help you with that.