Changeset 29431

Show
Ignore:
Timestamp:
02/02/09 18:23:06 (4 years ago)
Author:
isaisstillalive
Message:
  • wait時のCPU使用率が高すぎたため、スレッドがメインスレッドのみになった場合にwaitmessageするようにした。
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/ruwin/lib/ruwin.rb

    r29413 r29431  
    55END{ 
    66  unless $! 
    7     SWin::Application.messageloop{ Thread.pass } 
     7    SWin::Application.messageloop do 
     8      if Thread.list.size == 1 
     9        SWin::Application.waitmessage 
     10      else 
     11        Thread.pass 
     12      end 
     13    end 
    814  end 
    915}