Changeset 11070


Ignore:
Timestamp:
03/11/10 09:22:55 (2 years ago)
Author:
Sewi
Message:

Maybe fix for the exit-crash?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/TaskManager.pm

    r11063 r11070  
    431431    # Changing the selection seems to solve the endless-loop problem 
    432432    #   while ( threads->list(threads::running) >= 2 ) { 
    433     while ( threads->list(threads::joinable) >= 2 ) { 
     433    while ( threads->list(threads::joinable) > 0 ) { 
    434434        for ( threads->list(threads::joinable) ) { 
    435435            $_->join; 
Note: See TracChangeset for help on using the changeset viewer.