source: XIOS/dev/dev_trunk_omp/extern/src_ep_dev/ep_status.hpp @ 1646

Last change on this file since 1646 was 1646, checked in by yushan, 5 years ago

branch merged with trunk @1645. arch file (ep&mpi) added for ADA

File size: 391 bytes
Line 
1#ifndef EP_STATUS_HPP_INCLUDED
2#define EP_STATUS_HPP_INCLUDED
3
4#ifdef _usingEP
5
6namespace ep_lib
7{
8
9  class ep_status
10  {
11    public:
12
13      void* ep_datatype;
14      int ep_src;
15      int ep_tag;
16      void* mpi_status;
17     
18      ep_status() {}; 
19      ~ep_status() {}; 
20      ep_status(void* status);
21  };
22 
23  typedef ep_status MPI_Status;
24
25}
26
27#endif
28
29#endif // EP_STATUS_HPP_INCLUDED
30
Note: See TracBrowser for help on using the repository browser.