summaryrefslogtreecommitdiff
path: root/noncore/settings
authorbipolar <bipolar>2002-03-04 03:46:00 (UTC)
committer bipolar <bipolar>2002-03-04 03:46:00 (UTC)
commit12dc06073f172ecd221b8b5eb71ff63565045c1a (patch) (side-by-side diff)
tree92380d8d2f957418c65bccdff95e2a004045466e /noncore/settings
parent6f2ff65bfac36e80cd9e6c9977545a4b85d3b3af (diff)
downloadopie-12dc06073f172ecd221b8b5eb71ff63565045c1a.zip
opie-12dc06073f172ecd221b8b5eb71ff63565045c1a.tar.gz
opie-12dc06073f172ecd221b8b5eb71ff63565045c1a.tar.bz2
committed by ljp (llornkcor) changed SIGTERM to SIGKILL for those stubborn stains
Diffstat (limited to 'noncore/settings') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sysinfo/processinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/processinfo.cpp b/noncore/settings/sysinfo/processinfo.cpp
index 8e992d5..f9263ea 100644
--- a/noncore/settings/sysinfo/processinfo.cpp
+++ b/noncore/settings/sysinfo/processinfo.cpp
@@ -119,21 +119,21 @@ void ProcessInfo::updateData()
void ProcessInfo::viewProcess(QListViewItem *process)
{
QString pid= process->text(0);
QString command = process->text(1);
switch( QMessageBox::information( this, (tr("Kill Process?")),
(tr("You really want to kill\n"+command+" PID: "+pid+"?")),
(tr("Yes")), (tr("No")), 0 )){
case 0: // Yes clicked,
{
bool ok;
pid_t child=pid.toInt(&ok,10);
- if((kill(child,SIGTERM)) < 0)
+ if((kill(child,SIGKILL)) < 0)
perror("kill:SIGTERM");
}
break;
case 1: // Cancel
break;
};
//printf("Double click for PID: %s\n", process->text(0).stripWhiteSpace().latin1());
}