Ignore:
Timestamp:
01/31/19 12:12:52 (5 years ago)
Author:
yushan
Message:

branch merged with trunk @1645. arch file (ep&mpi) added for ADA

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_trunk_omp/src/filter/store_filter.cpp

    r1474 r1646  
    4848    { 
    4949      std::map<Time, CDataPacketPtr>::const_iterator it ; 
    50       info(0)<<"Impossible to get the packet with timestamp = " << timestamp<<std::endl<<"Available timestamp are : "<<std::endl ; 
    51       for(it=packets.begin();it!=packets.end();++it) info(0)<<it->first<<"  "; 
    52       info(0)<<std::endl ; 
     50      #pragma omp critical (_output) 
     51      { 
     52        info(0)<<"Impossible to get the packet with timestamp = " << timestamp<<std::endl<<"Available timestamp are : "<<std::endl ; 
     53      } 
     54      for(it=packets.begin();it!=packets.end();++it) 
     55      { 
     56        #pragma omp critical (_output) 
     57        { 
     58          info(0)<<it->first<<"  "; 
     59        } 
     60      } 
     61      #pragma omp critical (_output) 
     62      {  
     63        info(0)<<std::endl ; 
     64      } 
    5365      ERROR("CConstDataPacketPtr CStoreFilter::getPacket(Time timestamp) const", 
    5466            << "Impossible to get the packet with timestamp = " << timestamp); 
Note: See TracChangeset for help on using the changeset viewer.