Changeset 2555


Ignore:
Timestamp:
09/04/23 12:13:30 (8 months ago)
Author:
ymipsl
Message:

Bug fix for one sided client. May lead to not close context.

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/transport/one_sided_context_client.cpp

    r2547 r2555  
    178178      { 
    179179        itBuff.second->eventLoop() ; 
    180         pending |= itBuff.second->isEmpty(); 
     180        pending |= !(itBuff.second->isEmpty()); 
    181181      } 
    182182      return pending; 
     
    202202      { 
    203203        buffers[rank]->eventLoop() ; 
    204         pending |= buffers[rank]->isEmpty() ; 
     204        pending |= !(buffers[rank]->isEmpty()) ; 
    205205      } 
    206206      return pending; 
Note: See TracChangeset for help on using the changeset viewer.