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/server.cpp

    r1900 r1902  
    404404 
    405405      for (std::list<MPI_Comm>::iterator it = contextInterComms.begin(); it != contextInterComms.end(); it++) 
    406         MPI_Comm_free(&(*it)); 
     406        /* MPI_Comm_free(&(*it)) */; // WARNING remove freeing communicator !! --> deadlock raised, to be checked 
    407407 
    408408      for (std::list<MPI_Comm>::iterator it = contextIntraComms.begin(); it != contextIntraComms.end(); it++) 
     
    416416 
    417417        for (std::list<MPI_Comm>::iterator it = interCommRight.begin(); it != interCommRight.end(); it++) 
    418           MPI_Comm_free(&(*it)); 
     418          /* MPI_Comm_free(&(*it)) */ ; // WARNING remove freeing communicator !! --> deadlock raised, to be checked 
    419419 
    420420      MPI_Comm_free(&intraComm); 
     
    478478                MPI_Send(&msg,1,MPI_INT,0,0,*itr) ; 
    479479              } 
    480               MPI_Comm_free(&(*it)); 
     480              /* MPI_Comm_free(&(*it)); */ // WARNING remove freeing communicator !! --> deadlock raised, to be checked 
    481481              interCommLeft.erase(it) ; 
    482482              break ; 
     
    791791      if (!fb->is_open()) 
    792792        ERROR("void CServer::openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb)", 
    793               << std::endl << "Can not open <" << fileNameClient.str() << "> file to write the server log(s)."); 
     793              << std::endl << "Can not open <" << fileNameClient << "> file to write the server log(s)."); 
    794794    } 
    795795 
Note: See TracChangeset for help on using the changeset viewer.