Changeset 7536 for source/ariba/utility
- Timestamp:
- Feb 5, 2010, 9:46:33 AM (15 years ago)
- Location:
- source/ariba/utility
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/bootstrap/BootstrapManager.cpp
r7532 r7536 111 111 112 112 ModuleMap::iterator i = modules.find(type); 113 if( i != modules.end() ) return RegistrationFailed;113 if( i == modules.end() ) return RegistrationFailed; 114 114 115 115 BootstrapModule* module = i->second; -
source/ariba/utility/system/Timer.cpp
r7533 r7536 55 55 Timer::~Timer() { 56 56 #ifndef UNDERLAY_OMNET 57 if( running ){ 58 running = false; 59 60 timerThread->join(); 61 delete timerThread; 62 timerThread = NULL; 63 } 57 stop(); 58 delete timerThread; 59 timerThread = NULL; 64 60 #endif // UNDERLAY_OMNET 65 61 } … … 101 97 reset(); // cause the sleep to abort 102 98 SystemQueue::instance().dropAll(this); 99 timerThread->join(); 103 100 } 104 101
Note:
See TracChangeset
for help on using the changeset viewer.