Changeset 3705 for source/ariba/utility
- Timestamp:
 - May 26, 2009, 4:27:55 PM (16 years ago)
 - Location:
 - source/ariba/utility
 - Files:
 - 
      
- 2 edited
 
- 
          
  misc/Demultiplexer.hpp (modified) (3 diffs)
 - 
          
  types/Identifier.cpp (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
source/ariba/utility/misc/Demultiplexer.hpp
r3690 r3705 80 80 LISTENER_SERVICE_MAP_CITERATOR i = mapListenerService.begin(); 81 81 LISTENER_SERVICE_MAP_CITERATOR iend = mapListenerService.end(); 82 82 83 83 for( ; i != iend; i++ ) 84 84 cout << "xxx" << i->first.toString() << " -> " << i->second << std::endl; … … 88 88 SERVICE_LISTENER_MAP_CITERATOR i = mapServiceListener.begin(); 89 89 SERVICE_LISTENER_MAP_CITERATOR iend = mapServiceListener.end(); 90 90 91 91 for( ; i != iend; i++ ) 92 92 cout << "xxx" << i->first << " -> " << i->second.toString() << std::endl; … … 112 112 void unregisterItem( S id ) { 113 113 T listener = get( id ); 114 114 115 115 { 116 116 boost::mutex::scoped_lock lock( mapMutex );  - 
      
source/ariba/utility/types/Identifier.cpp
r3690 r3705 319 319 } 320 320 bool Identifier::operator==(const Identifier& compKey) const { 321 return compareTo(compKey) == 0; 321 322 if( this->isUnspecified() && compKey.isUnspecified() ) 323 return true; 324 else 325 return compareTo(compKey) == 0; 322 326 } 323 327 bool Identifier::operator!=(const Identifier& compKey) const { … … 599 603 //as mpn_random has no seeding function 600 604 // we mess aroung here a little to achive some randomness 601 // using the rand function that _is_ seeded in the 605 // using the rand function that _is_ seeded in the 602 606 // StartupWrapper::initSystem function 603 607  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.