summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2012-03-14 23:55:39 +0100
committerPaul Buetow <paul@buetow.org>2012-03-14 23:55:39 +0100
commit66ee5dc4507b88d67086e3f5ef9d21b0e73f2331 (patch)
treea65a343dab1ea1c7950c938b6cb20b9324ea3140
parent772e0dce07faf123f7657d3161bff0ee6e9951e6 (diff)
some typos removed
-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 ($;$) {