Changeset 20241

Show
Ignore:
Timestamp:
05/21/07 22:57:36 (1 year ago)
Author:
aronb
Message:

Don't call checkForReconfig since it handles changing applications too.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/modules/vrjuggler/vrj/Kernel/Kernel.cpp

    r20230 r20241  
    352352   { 
    353353      cluster::ClusterManager::instance()->start(); 
     354      jccl::ConfigManager* cfg_mgr = jccl::ConfigManager::instance(); 
    354355 
    355356      do 
     
    358359            << " vrj::Kernel::start() configuring before starting cluster." << std::endl << vprDEBUG_FLUSH; 
    359360 
    360          checkForReconfig(); 
     361         unsigned num_processed(0); 
     362         do 
     363         { 
     364            num_processed = cfg_mgr->attemptReconfiguration(); 
     365         } 
     366         while (num_processed > 0); 
    361367      } 
    362368      while (!cluster::ClusterManager::instance()->pluginsReady());