Ignore:
Timestamp:
01/22/19 16:43:32 (5 years ago)
Author:
yushan
Message:

revert erroneous commit on trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/interface/c/oasis_cinterface.cpp

    r1638 r1639  
    2121  } 
    2222 
    23   void oasis_get_localcomm(ep_lib::MPI_Comm& comm) 
     23  void oasis_get_localcomm(MPI_Comm& comm) 
    2424  { 
    25     ep_lib::MPI_Fint f_comm ; 
     25    MPI_Fint f_comm ; 
    2626     
    2727    fxios_oasis_get_localcomm(&f_comm) ; 
    28     //comm=MPI_Comm_f2c(f_comm) ; 
     28    comm=MPI_Comm_f2c(f_comm) ; 
    2929  } 
    3030  
    31   void oasis_get_intracomm(ep_lib::MPI_Comm& comm_client_server,const std::string& server_id) 
     31  void oasis_get_intracomm(MPI_Comm& comm_client_server,const std::string& server_id) 
    3232  { 
    33     ep_lib::MPI_Fint f_comm ; 
     33    MPI_Fint f_comm ; 
    3434     
    3535    fxios_oasis_get_intracomm(&f_comm,server_id.data(),server_id.size()) ; 
    36     //comm_client_server=MPI_Comm_f2c(f_comm) ; 
     36    comm_client_server=MPI_Comm_f2c(f_comm) ; 
    3737  } 
    3838  
    39   void oasis_get_intercomm(ep_lib::MPI_Comm& comm_client_server,const std::string& server_id) 
     39  void oasis_get_intercomm(MPI_Comm& comm_client_server,const std::string& server_id) 
    4040  { 
    41     ep_lib::MPI_Fint f_comm ; 
     41    MPI_Fint f_comm ; 
    4242     
    4343    fxios_oasis_get_intercomm(&f_comm,server_id.data(),server_id.size()) ; 
    44     //comm_client_server=MPI_Comm_f2c(f_comm) ; 
     44    comm_client_server=MPI_Comm_f2c(f_comm) ; 
    4545  } 
    4646} 
Note: See TracChangeset for help on using the changeset viewer.