Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
is qprocess similar to fork in linux, which create a child process. Any example of Qprocess?
Hi,
It uses forked.
As for examples, take a look at QProcess documentation.
@s002wjh Since the only way to spawn a new process in Linux is via fork/vfork/clone(), you can assume QProcess will ultimately use that.
fork/vfork/clone()
QProcess