Ignore:
Timestamp:
06/12/20 12:04:23 (4 years ago)
Author:
yushan
Message:

xios-2.5 : minormodif for Jean-Zay after system maintenance to RH8 and complr update frr om 8 à to 8.3.1. To be checked

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/branchs/xios-2.5/src/client.cpp

    r1867 r1900  
    247247      } 
    248248 
    249  
    250       /* MPI_Comm_free(&interComm); */ // WARNING remove freeing communicator !! --> deadlock raised, to be checked 
    251249      for (std::list<MPI_Comm>::iterator it = contextInterComms.begin(); it != contextInterComms.end(); it++) 
    252         /* MPI_Comm_free(&(*it)) */ ; // WARNING remove freeing communicator !! --> deadlock raised, to be checked 
     250        MPI_Comm_free(&(*it)); 
     251      MPI_Comm_free(&interComm); 
    253252      MPI_Comm_free(&intraComm); 
    254253 
     
    311310        fileNameClient << fileName << "_" << std::setfill('0') << std::setw(numDigit) << getRank() << ext; 
    312311 
    313  
    314312      fb->open(fileNameClient.str().c_str(), std::ios::out); 
    315313      if (!fb->is_open()) 
    316314        ERROR("void CClient::openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb)", 
    317               << std::endl << "Can not open <" << fileNameClient << "> file to write the client log(s)."); 
     315              << std::endl << "Can not open <" << fileNameClient.str() << "> file to write the client log(s)."); 
    318316    } 
    319317 
Note: See TracChangeset for help on using the changeset viewer.