source: XIOS/dev/branch_yushan_merged/extern/src_ep_dev/ep_memory.cpp @ 1134

Last change on this file since 1134 was 1134, checked in by yushan, 7 years ago

branch merged with trunk r1130

File size: 446 bytes
Line 
1#include "ep_lib.hpp"
2#include <mpi.h>
3#include "ep_declaration.hpp"
4
5namespace ep_lib
6{
7
8
9
10  int MPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr)
11  {
12    ::MPI_Alloc_mem(size.mpi_aint, static_cast< ::MPI_Info>(info.mpi_info), baseptr);
13    return 0;
14   }
15   
16  int MPI_Alloc_mem(unsigned long size, MPI_Info info, void *baseptr)
17  {
18    ::MPI_Alloc_mem(size, static_cast< ::MPI_Info>(info.mpi_info), baseptr);
19    return 0;
20  }
21
22
23
24}
25
26
Note: See TracBrowser for help on using the repository browser.