Ignore:
Timestamp:
09/12/23 08:52:28 (10 months ago)
Author:
jderouillat
Message:

Add the missing delete tokenManager_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/transport/p2p_context_server.hpp

    r2560 r2562  
    3636            MPI_Get_count(&status,MPI_CHAR,&count_); 
    3737            buffer_.resize(count_) ; 
     38            info(logProtocol) << "DBG : Request created from "  << rank_ << ", of size " << count_ << endl; 
    3839            MPI_Irecv(buffer_.data(), count_, MPI_CHAR, rank_, 20, interComm, &request_) ; 
     40            //MPI_Status mpistatus; 
     41            //MPI_Recv(buffer_.data(), count_, MPI_CHAR, rank_, 20, interComm, &mpistatus) ; 
    3942          } 
    4043           
    41           ~CRequest() { } 
     44          ~CRequest() { info(logProtocol) << "DBG : Request deleted "  << rank_ << ", of size " << count_ << endl; } 
    4245 
    4346          bool test(void) 
     
    4649            MPI_Status status ; 
    4750            MPI_Test(&request_, &flag, &status) ; 
    48             if (flag==true) return true ; 
     51            if (flag==true) { 
     52              info(logProtocol) << "DBG : Request completed "  << rank_ << ", of size " << count_ << endl; 
     53              return true ; 
     54            } 
    4955            else return false ; 
    5056          } 
Note: See TracChangeset for help on using the changeset viewer.