QProcess freezen
General and Desktop
2
Posts
2
Posters
1.7k
Views
1
Watching
-
Hi,
I work in Qt program to control running processes. Unfortunately this kind of process program freezes.
@p_control_stunnel = new QProcess (this); p_control_stunnel->execute("cmd", QStringList() << "tasklist | find \"stunnel.exe\"");@I also tried this:
@p_control_stunnel = new QProcess (this); p_control_stunnel->start("tasklist /v /fo csv | find \"stunnel.exe\" ");@Unfortunately, as soon as the program runs the entire freezes. debugger did not help.
Please help