Re: [Development] No Finished signal from QProcess!

2012-02-27 Thread Thiago Macieira
On terça-feira, 28 de fevereiro de 2012 01.02.25, lata agrawal wrote: > Hi Thiago, Hello. Please don't do top-posting to mailing lists. > Thanks for replying. After reading on net, I found that "even if child > process finishes and parent process is not waiting for the child process to > finish,

Re: [Development] No Finished signal from QProcess!

2012-02-27 Thread lata agrawal
Hi Thiago, Thanks for replying. After reading on net, I found that "even if child process finishes and parent process is not waiting for the child process to finish, then parent process will not receive a finished signal. rather in this case, child process will become a zombie". I checked that aft

Re: [Development] No Finished signal from QProcess!

2012-02-27 Thread 1+1=2
Hi, please use return a.exec(); instead of return 0; Debao 2012/2/27 lata agrawal : > Hi, > > I am running console application C1 in QProcess. I am starting this console > application C1 from another console application C2. Problem is: > > I am only getting finished signal from C1 when I use

Re: [Development] No Finished signal from QProcess!

2012-02-27 Thread Thiago Macieira
On segunda-feira, 27 de fevereiro de 2012 14.39.12, lata agrawal wrote: > I fail to understand what is going on wrong here. Someone please help. I can't understand your code either. Please post a minimal and compileable test case so we can verify whether this is a bug in QProcess. In particular,

[Development] No Finished signal from QProcess!

2012-02-27 Thread lata agrawal
Hi, I am running console application C1 in QProcess. I am starting this console application C1 from another console application C2. Problem is: I am only getting finished signal from C1 when I use waitforfinshed() else I am not getting finished signal from C1. Here is the code: Q