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) (ignore 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
@@ -128,7 +128,7 @@ void ProcessInfo::viewProcess(QListViewItem *process)
{
bool ok;
pid_t child=pid.toInt(&ok,10);
- if((kill(child,SIGTERM)) < 0)
+ if((kill(child,SIGKILL)) < 0)
perror("kill:SIGTERM");
}
break;