aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/mauve_thread.rb
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2011-07-18 15:42:43 +0100
committerPatrick J Cherry <patrick@bytemark.co.uk>2011-07-18 15:42:43 +0100
commitd84d5fb931850955a9eb0f4a0edd0b6a00dc8ed9 (patch)
tree79b6b33a035ae4024ea249d6618525532075b600 /lib/mauve/mauve_thread.rb
parenteb76e0b20da5ac71f304a930df5c0f9fcf56652b (diff)
* Fixed up log rotation.
* Added a couple of exception catches.
Diffstat (limited to 'lib/mauve/mauve_thread.rb')
-rw-r--r--lib/mauve/mauve_thread.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/mauve/mauve_thread.rb b/lib/mauve/mauve_thread.rb
index 1aa8619..4a2787d 100644
--- a/lib/mauve/mauve_thread.rb
+++ b/lib/mauve/mauve_thread.rb
@@ -53,13 +53,15 @@ module Mauve
@frozen = true
- 20.times { Kernel.sleep 0.1 ; break if @thread.stop? }
+ if @thread.is_a?(Thread)
+ 20.times { Kernel.sleep 0.1 ; break if @thread.stop? }
- logger.debug("Thread has not frozen!") unless @thread.stop?
+ logger.debug("Thread has not frozen!") unless @thread.stop?
+ end
end
def frozen?
- defined? @frozen and @frozen and @thread.stop?
+ defined? @frozen and @frozen and @thread.is_a?(Thread) and @thread.stop?
end
def thaw