Changeset 4699 for source/ariba/utility/system/EnterMethod.cpp
- Timestamp:
- Jul 3, 2009, 8:43:09 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/system/EnterMethod.cpp
r4679 r4699 52 52 void EnterMethod::enter(){ 53 53 54 SystemQueue::instance()::enterMethod(); 55 56 /* 54 57 { boost::mutex::scoped_lock lock( waitForEnterMutex ); 55 58 … … 58 61 waitForEnter.wait( lock ); 59 62 } 63 */ 60 64 } 61 65 62 66 void EnterMethod::leave(){ 63 67 68 SystemQueue::instance()::leaveMethod(); 69 70 /* 64 71 { boost::mutex::scoped_lock lock( waitForLeaveMutex ); 65 72 waitForLeave.notify_one(); 66 73 } 74 */ 67 75 } 68 76 77 /* 69 78 void EnterMethod::handleSystemEvent( const SystemEvent& event ){ 70 79 … … 78 87 } 79 88 } 80 89 */ 81 90 }} // namespace ariba, common
Note:
See TracChangeset
for help on using the changeset viewer.