author | bipolar <bipolar> | 2002-03-04 03:35:25 (UTC) |
---|---|---|
committer | bipolar <bipolar> | 2002-03-04 03:35:25 (UTC) |
commit | 6f2ff65bfac36e80cd9e6c9977545a4b85d3b3af (patch) (side-by-side diff) | |
tree | d145b32c25af017889032893e4a890ae965104ea | |
parent | b72d53b26a892c63d266180d87c3efad2369d1b8 (diff) | |
download | opie-6f2ff65bfac36e80cd9e6c9977545a4b85d3b3af.zip opie-6f2ff65bfac36e80cd9e6c9977545a4b85d3b3af.tar.gz opie-6f2ff65bfac36e80cd9e6c9977545a4b85d3b3af.tar.bz2 |
committed by ljp (llornkcor): added SIGTERM when double clicking a process.
-rw-r--r-- | noncore/settings/sysinfo/processinfo.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/processinfo.cpp b/noncore/settings/sysinfo/processinfo.cpp index f95d9cc..8e992d5 100644 --- a/noncore/settings/sysinfo/processinfo.cpp +++ b/noncore/settings/sysinfo/processinfo.cpp @@ -25,2 +25,6 @@ #include <qdir.h> +#include <qmessagebox.h> + +#include <sys/types.h> +#include <signal.h> @@ -117,2 +121,18 @@ 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) + perror("kill:SIGTERM"); + } + break; + case 1: // Cancel + break; + }; //printf("Double click for PID: %s\n", process->text(0).stripWhiteSpace().latin1()); |