Table 25 lists the bindings for
memory allocation subroutines.
Table 25. Bindings for memory allocation
|
Subroutine name: C C++ FORTRAN |
Binding: C C++ FORTRAN |
|---|---|
| MPI_Alloc_mem | int MPI_Alloc_mem (MPI_Aint size, MPI_Info info, void *baseptr); |
| MPI::Alloc_mem | void* MPI::Alloc_mem(MPI::Aint size, const MPI::Info& info); |
| MPI_ALLOC_MEM | MPI_ALLOC_MEM(INTEGER SIZE, INTEGER INFO, INTEGER BASEPTR, INTEGER IERROR) |
| MPI_Free_mem | int MPI_Free_mem (void *base); |
| MPI::Free_mem | void MPI::Free_mem(void *base): |
| MPI_FREE_MEM | MPI_FREE_MEM(CHOICE BASE, INTEGER IERROR) |