2004-01-14 06:42:02 +03:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
2004-03-12 01:02:01 +03:00
|
|
|
#ifndef MCA_PTL_BASE_SEND_FRAG_H
|
|
|
|
#define MCA_PTL_BASE_SEND_FRAG_H
|
2004-01-14 06:42:02 +03:00
|
|
|
|
|
|
|
#include "mca/mpi/ptl/ptl.h"
|
|
|
|
#include "mca/mpi/ptl/base/ptl_base_fragment.h"
|
|
|
|
|
2004-02-13 01:42:39 +03:00
|
|
|
extern lam_class_t mca_ptl_base_send_frag_t_class;
|
2004-01-14 06:42:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
struct mca_ptl_base_send_frag_t {
|
|
|
|
mca_ptl_base_frag_t super;
|
|
|
|
struct mca_ptl_base_send_request_t *frag_request;
|
|
|
|
};
|
|
|
|
typedef struct mca_ptl_base_send_frag_t mca_ptl_base_send_frag_t;
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|