Ignore:
Timestamp:
Jul 3, 2009, 8:43:09 AM (15 years ago)
Author:
Christoph Mayer
Message:

locking für enter method neu

File:
1 edited

Legend:

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

    r4679 r4699  
    5252void EnterMethod::enter(){
    5353
     54        SystemQueue::instance()::enterMethod();
     55
     56        /*
    5457        { boost::mutex::scoped_lock lock( waitForEnterMutex );
    5558
     
    5861                waitForEnter.wait( lock );
    5962        }
     63        */
    6064}
    6165
    6266void EnterMethod::leave(){
    6367
     68        SystemQueue::instance()::leaveMethod();
     69
     70        /*
    6471        { boost::mutex::scoped_lock lock( waitForLeaveMutex );
    6572                waitForLeave.notify_one();
    6673        }
     74        */
    6775}
    6876
     77/*
    6978void EnterMethod::handleSystemEvent( const SystemEvent& event ){
    7079
     
    7887        }
    7988}
    80 
     89*/
    8190}} // namespace ariba, common
Note: See TracChangeset for help on using the changeset viewer.