Changeset 2549


Ignore:
Timestamp:
08/30/23 09:36:02 (9 months ago)
Author:
jderouillat
Message:

Add missing return statements, fix GNU environment for threads

Location:
XIOS3/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/manager/window_dynamic.hpp

    r2547 r2549  
    168168    } 
    169169     
    170     int attach(MPI_Aint size)  
     170    void attach(MPI_Aint size)  
    171171    { 
    172172      windowSize_ = size+OFFSET_BUFFER_SIZE ; 
     
    178178    } 
    179179     
    180     int attach()  
     180    void attach()  
    181181    { 
    182182      MPI_Win_attach(window_, winBuffer_, windowSize_) ; 
     
    184184    } 
    185185 
    186     int detach()  
     186    void detach()  
    187187    { 
    188188      MPI_Win_detach(window_, winBuffer_) ; 
  • XIOS3/trunk/xios_test_suite/ARCH/arch-X64_IRENE_GNU.fcm

    r2278 r2549  
    2020 
    2121%BASE_INC       -D__NONE__ 
    22 %BASE_LD        -lstdc++ 
     22%BASE_LD        -lstdc++ -lpthread 
    2323 
    2424%CPP            cpp 
Note: See TracChangeset for help on using the changeset viewer.