1
1
openmpi/src/mca/mpi/ptl/base/ptl_base_sendfrag.c
Tim Woodall 8d4f3d2b92 moved/renamed base data structures used in PML<->PTL interface from pml/base
to ptl/base as these are specific to the PTL interface

This commit was SVN r346.
2004-01-14 03:42:02 +00:00

25 строки
622 B
C

/*
* $HEADER$
*/
#include "mca/mpi/ptl/base/ptl_base_sendfrag.h"
lam_class_info_t mca_ptl_base_send_frag_cls = {
"mca_ptl_base_send_frag_t",
&mca_ptl_base_frag_cls,
(class_init_t) mca_ptl_base_send_frag_init,
(class_destroy_t) mca_ptl_base_send_frag_destroy
};
void mca_ptl_base_send_frag_init(mca_ptl_base_send_frag_t* frag)
{
SUPER_INIT(frag, &mca_ptl_base_frag_cls);
}
void mca_ptl_base_send_frag_destroy(mca_ptl_base_send_frag_t* frag)
{
SUPER_DESTROY(frag, &mca_ptl_base_frag_cls);
}