forked from qt-creator/qt-creator
QtcProcess: Fix terminate() for process launcher
ProcessLauncherImpl::terminate() was behaving the same as ProcessLauncherImpl::kill() in case of process launcher implementation - in both cases the launcher immediately returned confirmation about receiving the close request and was putting the corresponding process into its reaper. However, the issue with this approach is that we can't receive anymore any potential ready read signal from the process being terminated after a call to terminate(). The fix is to diverge the behavior of terminate() and kill() of ProcessLauncherImpl. The behavior of kill() remains the same, while terminate() just instructs the process launcher to start termination without putting the process into the reaper, yet. Add a test that checks for any possible zombies. We run the RecursiveBlockingProcess recursively. The most nested process blocks. After a short wait we terminate the outermost process. With this test we are trying to see if terminating the middle process terminates also its children and doesn't leave zombies. Before we execute the test (and also by the end of this test) we call Singleton::deleteAll() in order to ensure that reaping of previously running processes has finished. We ensure the number of running processtestapps is zero. Later, we ensure that the leaf process was already started and the number of running processtestapps equals the depth of recursion. Fix apparent bug in getLocalProcessesUsingProc(). Change-Id: I7e2bc46ad5ca22f26620da86fbaf0fa00a7db3c3 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
@@ -114,12 +114,14 @@ StopProcessPacket::StopProcessPacket(quintptr token)
|
||||
|
||||
void StopProcessPacket::doSerialize(QDataStream &stream) const
|
||||
{
|
||||
Q_UNUSED(stream);
|
||||
stream << int(signalType);
|
||||
}
|
||||
|
||||
void StopProcessPacket::doDeserialize(QDataStream &stream)
|
||||
{
|
||||
Q_UNUSED(stream);
|
||||
int sig;
|
||||
stream >> sig;
|
||||
signalType = SignalType(sig);
|
||||
}
|
||||
|
||||
void WritePacket::doSerialize(QDataStream &stream) const
|
||||
|
||||
Reference in New Issue
Block a user