Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (97 - 99 of 301)

Ticket Resolution Summary Owner Reporter
#69 fixed QProcess cannot start process Dmitry A. Kuminov
Description

The following simple program:

	qDebug() << "Starting...";
	QProcess proc;    
	proc.start("cmd.exe");
	qDebug() << "Waiting for finished...";
	proc.waitForFinished();
	qDebug() << "DONE";

terminates immediately with the following output:

Starting...
Waiting for finished...
DONE
QProcess: Destroyed while process is still running.

Apparently, nothing is started.

#72 fixed QProcess cannot start applications of other types directly Dmitry A. Kuminov Dmitry A. Kuminov
Description

An attempt to start a PM application from a console Qt application will just fail because DosExecPgm? (used by spawnvpe() we use in QProcess) cannot start applications of different type.

One of the possible solutions is to start such applications indirectly through cmd.exe ("cmd.exe /c app.exe") which knows how to create new sessions of different type.

#290 invalid QProcess Tellie
Description

Hi Dmitry,

Is QProcess::startDetached() even supported on OS/2?

Cause when running debug version i see: QWARN : Tests::initTestCase() QProcess: Destroyed while process is still running. QWARN : Tests::initTestCase() QProcess: Destroyed while process is still running. QWARN : Tests::initTestCase() QProcess: Destroyed while process is still running.

And notting happens ... It's working with Windows, alto thats what maintainer told me.

Note: See TracQuery for help on using queries.