2004-01-09 19:20:50 +00:00
|
|
|
/*
|
2004-11-22 01:38:40 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-09 19:20:50 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
2004-10-20 01:03:09 +00:00
|
|
|
#include "ompi_config.h"
|
2005-04-13 03:19:48 +00:00
|
|
|
#include "mca/pml/pml.h"
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mca/pml/base/pml_base_request.h"
|
2004-01-09 19:20:50 +00:00
|
|
|
|
2004-03-26 14:15:20 +00:00
|
|
|
static void mca_pml_base_request_construct(mca_pml_base_request_t* req)
|
|
|
|
{
|
2004-07-15 18:08:20 +00:00
|
|
|
req->req_ompi.req_type = OMPI_REQUEST_PML;
|
2004-03-26 14:15:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mca_pml_base_request_destruct(mca_pml_base_request_t* req)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_class_t mca_pml_base_request_t_class = {
|
2004-01-09 19:20:50 +00:00
|
|
|
"mca_pml_base_request_t",
|
2004-06-07 15:33:53 +00:00
|
|
|
OBJ_CLASS(ompi_request_t),
|
|
|
|
(ompi_construct_t) mca_pml_base_request_construct,
|
|
|
|
(ompi_destruct_t) mca_pml_base_request_destruct
|
2004-01-09 19:20:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|