summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG3
-rwxr-xr-xloadbars4
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d44fe5b..94bad5c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,6 @@
* Dropped FreeBSD support / focus is Linux
-* On shutdown all sub-processes are gonna be terminated instantly (was old bug)
+* On shutdown all sub-processes are gonna be terminated instantly
+ (was old bug). Needs Proc::ProcessTable module.
Sat Feb 25 20:09:02 CET 2012
* Release v0.5.1
diff --git a/loadbars b/loadbars
index de394e6..d4e56b7 100755
--- a/loadbars
+++ b/loadbars
@@ -191,7 +191,7 @@ sub write_config () {
sub terminate_pids (@) {
my @threads = @_;
- display_info 'Terminating sub-processes';
+ display_info 'Terminating sub-processes, hasta la vista!';
$_->kill('TERM') for @threads;
for my $pid (@PIDS) {
my $proc_table = Proc::ProcessTable->new();
@@ -206,7 +206,7 @@ sub terminate_pids (@) {
kill 'TERM', $pid;
}
- display_info 'Terminating down. I\'ll be back!';
+ display_info 'Terminating done. I\'ll be back!';
}
sub stats_thread ($;$) {