Changeset 7533


Ignore:
Timestamp:
Feb 4, 2010, 7:23:46 PM (14 years ago)
Author:
Christoph Mayer
Message:

-fix für löschen von timer objekten welche noch aktive messages in der queue haben

Location:
source/ariba/utility/system
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/system/SystemQueue.cpp

    r7468 r7533  
    202202        boost::mutex::scoped_lock lock( queueMutex );
    203203
    204         bool deleted = false;
     204        bool deleted;
    205205        do{
     206                deleted = false;
    206207                EventQueue::iterator i = eventsQueue.begin();
    207208                EventQueue::iterator iend = eventsQueue.end();
  • source/ariba/utility/system/Timer.cpp

    r7468 r7533  
    100100        running = false;
    101101        reset(); // cause the sleep to abort
    102         //SystemQueue::instance().dropAll(this);
     102        SystemQueue::instance().dropAll(this);
    103103}
    104104
Note: See TracChangeset for help on using the changeset viewer.