detach killHelper process from KWin

BUG: 295940
FIXED-IN: 4.9
REVIEW: 104627
icc-effect-5.14.5
Thomas Lübking 2012-04-16 23:52:13 +02:00
parent 5d6613eb99
commit 92939b13d7
2 changed files with 13 additions and 27 deletions

View File

@ -106,7 +106,7 @@ Client::Client(Workspace* ws)
, tab_group(NULL)
, in_layer(UnknownLayer)
, ping_timer(NULL)
, process_killer(NULL)
, m_killHelperPID(0)
, user_time(CurrentTime) // Not known yet
, allowed_actions(0)
, block_geometry_updates(0)
@ -1457,13 +1457,9 @@ void Client::gotPing(Time timestamp)
return;
delete ping_timer;
ping_timer = NULL;
if (process_killer != NULL) {
process_killer->kill();
// Recycle when the process manager has noticed that the process exited
// a delete process_killer here sometimes causes a hang in waitForFinished
connect(process_killer, SIGNAL(finished(int,QProcess::ExitStatus)),
process_killer, SLOT(deleteLater()));
process_killer = NULL;
if (m_killHelperPID && !::kill(m_killHelperPID, 0)) { // means the process is alive
::kill(m_killHelperPID, SIGTERM);
m_killHelperPID = 0;
}
}
@ -1477,7 +1473,7 @@ void Client::pingTimeout()
void Client::killProcess(bool ask, Time timestamp)
{
if (process_killer != NULL)
if (m_killHelperPID && !::kill(m_killHelperPID, 0)) // means the process is alive
return;
Q_ASSERT(!ask || timestamp != CurrentTime);
QByteArray machine = wmClientMachine(true);
@ -1493,25 +1489,16 @@ void Client::killProcess(bool ask, Time timestamp)
} else
::kill(pid, SIGTERM);
} else {
process_killer = new QProcess(this);
connect(process_killer, SIGNAL(error(QProcess::ProcessError)), SLOT(processKillerExited()));
connect(process_killer, SIGNAL(finished(int,QProcess::ExitStatus)), SLOT(processKillerExited()));
process_killer->start(KStandardDirs::findExe("kwin_killer_helper"),
QStringList() << "--pid" << QByteArray().setNum(unsigned(pid)) << "--hostname" << machine
<< "--windowname" << caption()
<< "--applicationname" << resourceClass()
<< "--wid" << QString::number(window())
<< "--timestamp" << QString::number(timestamp));
QProcess::startDetached(KStandardDirs::findExe("kwin_killer_helper"),
QStringList() << "--pid" << QByteArray().setNum(unsigned(pid)) << "--hostname" << machine
<< "--windowname" << caption()
<< "--applicationname" << resourceClass()
<< "--wid" << QString::number(window())
<< "--timestamp" << QString::number(timestamp),
QString(), &m_killHelperPID);
}
}
void Client::processKillerExited()
{
kDebug(1212) << "Killer exited";
delete process_killer;
process_killer = NULL;
}
void Client::setSkipTaskbar(bool b, bool from_outside)
{
int was_wants_tab_focus = wantsTabFocus();

View File

@ -675,7 +675,6 @@ private slots:
void performMoveResize();
void removeSyncSupport();
void pingTimeout();
void processKillerExited();
void demandAttentionKNotify();
void repaintDecorationPending();
@ -896,7 +895,7 @@ private:
TabGroup* tab_group;
Layer in_layer;
QTimer* ping_timer;
QProcess* process_killer;
qint64 m_killHelperPID;
Time ping_timestamp;
Time user_time;
unsigned long allowed_actions;