source: XIOS/trunk/src/interface/c/oasis_cinterface.hpp @ 382

Last change on this file since 382 was 382, checked in by ymipsl, 12 years ago

embed MPI header to avoid some porting problem

YM

File size: 793 bytes
Line 
1#ifndef __OASIS_CINTERFACE__
2#define __OASIS_CINTERFACE__
3#include <string>
4#include "mpi.hpp"
5
6extern "C"
7{
8
9  void fxios_oasis_init(const char* server_id,int str_len) ;
10  void fxios_oasis_finalize(void) ;
11  void fxios_oasis_get_localcomm(MPI_Fint* f_comm) ;
12  void fxios_oasis_get_intracomm(MPI_Fint* f_comm_client_server,const char* client_id,int str_len) ;
13  void fxios_oasis_get_intercomm(MPI_Fint* f_comm_client_server,const char* client_id,int str_len) ;
14}
15 
16namespace xios
17{
18  void oasis_init(const std::string& server_id) ;
19  void oasis_finalize(void) ;
20  void oasis_get_localcomm(MPI_Comm& comm) ;
21  void oasis_get_intracomm(MPI_Comm& comm_client_server,const std::string& server_id) ;
22  void oasis_get_intercomm(MPI_Comm& comm_client_server,const std::string& server_id) ;
23}
24#endif
Note: See TracBrowser for help on using the repository browser.