2004-01-14 03:42:02 +00:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-10-20 01:03:09 +00:00
|
|
|
#include "ompi_config.h"
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mca/ptl/base/ptl_base_sendfrag.h"
|
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);
|
|
|
|
static void mca_ptl_base_send_frag_destruct(mca_ptl_base_send_frag_t* frag);
|
2004-02-04 17:11:57 +00:00
|
|
|
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_class_t mca_ptl_base_send_frag_t_class = {
|
2004-01-14 03:42:02 +00:00
|
|
|
"mca_ptl_base_send_frag_t",
|
2004-02-12 22:42:39 +00:00
|
|
|
OBJ_CLASS(mca_ptl_base_frag_t),
|
2004-06-07 15:33:53 +00:00
|
|
|
(ompi_construct_t) mca_ptl_base_send_frag_construct,
|
|
|
|
(ompi_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
|
|
|
static void mca_ptl_base_send_frag_destruct(mca_ptl_base_send_frag_t* frag)
|
2004-01-14 03:42:02 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|