2004-01-14 03:42:02 +00:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "lfc/lam_list.h"
|
|
|
|
#include "mca/ptl/base/ptl_base_fragment.h"
|
2004-01-14 03:42:02 +00:00
|
|
|
|
2004-02-10 14:04:27 +00:00
|
|
|
static void mca_ptl_base_frag_construct(mca_ptl_base_frag_t* frag);
|
|
|
|
static void mca_ptl_base_frag_destruct(mca_ptl_base_frag_t* frag);
|
2004-02-04 17:11:57 +00:00
|
|
|
|
|
|
|
|
2004-02-12 22:42:39 +00:00
|
|
|
lam_class_t mca_ptl_base_frag_t_class = {
|
2004-01-14 03:42:02 +00:00
|
|
|
"mca_ptl_base_frag_t",
|
2004-02-12 22:42:39 +00:00
|
|
|
OBJ_CLASS(lam_list_item_t),
|
2004-02-10 14:04:27 +00:00
|
|
|
(lam_construct_t) mca_ptl_base_frag_construct,
|
|
|
|
(lam_destruct_t) mca_ptl_base_frag_destruct
|
2004-01-14 03:42:02 +00:00
|
|
|
};
|
|
|
|
|
2004-02-10 14:04:27 +00:00
|
|
|
static void mca_ptl_base_frag_construct(mca_ptl_base_frag_t* frag)
|
2004-01-14 03:42:02 +00:00
|
|
|
{
|
2004-03-31 17:00:38 +00:00
|
|
|
OBJ_CONSTRUCT(&frag->frag_convertor, lam_convertor_t);
|
2004-01-14 03:42:02 +00:00
|
|
|
}
|
|
|
|
|
2004-02-10 14:04:27 +00:00
|
|
|
static void mca_ptl_base_frag_destruct(mca_ptl_base_frag_t* frag)
|
2004-01-14 03:42:02 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|