aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/mauve_thread.rb
diff options
context:
space:
mode:
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