2004-01-14 03:42:02 +00:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mca/mpi/ptl/base/ptl_base_sendfrag.h"
|
|
|
|
|
2004-02-10 14:04:27 +00:00
|
|
|
static void mca_ptl_base_send_frag_construct(mca_ptl_base_send_frag_t* frag);
|
|
|
|
static void mca_ptl_base_send_frag_destruct(mca_ptl_base_send_frag_t* frag);
|
2004-02-04 17:11:57 +00:00
|
|
|
|
|
|
|
|
2004-02-10 14:04:27 +00:00
|
|
|
lam_class_info_t mca_ptl_base_send_frag_t_class_info = {
|
2004-01-14 03:42:02 +00:00
|
|
|
"mca_ptl_base_send_frag_t",
|
2004-02-10 14:04:27 +00:00
|
|
|
CLASS_INFO(mca_ptl_base_frag_t),
|
|
|
|
(lam_construct_t) mca_ptl_base_send_frag_construct,
|
|
|
|
(lam_destruct_t) mca_ptl_base_send_frag_destruct
|
2004-01-14 03:42:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-02-10 14:04:27 +00:00
|
|
|
static void mca_ptl_base_send_frag_construct(mca_ptl_base_send_frag_t* frag)
|
2004-01-14 03:42:02 +00:00
|
|
|
{
|
2004-02-10 14:04:27 +00:00
|
|
|
OBJ_CONSTRUCT_SUPER(frag, mca_ptl_base_frag_t);
|
2004-01-14 03:42:02 +00:00
|
|
|
}
|
|
|
|
|
2004-02-10 14:04:27 +00:00
|
|
|
static void mca_ptl_base_send_frag_destruct(mca_ptl_base_send_frag_t* frag)
|
2004-01-14 03:42:02 +00:00
|
|
|
{
|
2004-02-10 14:04:27 +00:00
|
|
|
OBJ_DESTRUCT_SUPER(frag, mca_ptl_base_frag_t);
|
2004-01-14 03:42:02 +00:00
|
|
|
}
|
|
|
|
|