source: XIOS/dev/branch_openmp/extern/ep_dev/ep_status.hpp @ 1501

Last change on this file since 1501 was 1501, checked in by yushan, 6 years ago

save dev

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