Ignore:
Timestamp:
06/16/20 19:12:05 (4 years ago)
Author:
yushan
Message:

xios-2.5 : revert the previous commit

File:
1 edited

Legend:

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

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