2004-11-22 00:37:56 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. 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-11-22 00:37:56 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-24 16:47:00 +00:00
|
|
|
#ifndef _MCA_PML_BASE_BSEND_H_
|
|
|
|
#define _MCA_PML_BASE_BSEND_H_
|
|
|
|
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/mca/pml/pml.h"
|
|
|
|
#include "ompi/request/request.h"
|
2007-05-16 15:46:52 +00:00
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
2004-06-24 16:47:00 +00:00
|
|
|
|
2005-03-27 13:05:23 +00:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_init(bool enable_mpi_threads);
|
2004-10-28 18:13:43 +00:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_fini(void);
|
2004-06-24 16:47:00 +00:00
|
|
|
|
2007-05-16 15:46:52 +00:00
|
|
|
int mca_pml_base_bsend_attach(void* addr, int size);
|
|
|
|
int mca_pml_base_bsend_detach(void* addr, int* size);
|
2004-06-24 16:47:00 +00:00
|
|
|
|
2005-09-14 17:08:08 +00:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_request_alloc(ompi_request_t*);
|
2004-10-28 18:13:43 +00:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_request_start(ompi_request_t*);
|
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_request_fini(ompi_request_t*);
|
2006-07-14 19:32:26 +00:00
|
|
|
OMPI_DECLSPEC void* mca_pml_base_bsend_request_alloc_buf( size_t length );
|
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_request_free(void* addr);
|
|
|
|
|
2007-05-16 15:46:52 +00:00
|
|
|
END_C_DECLS
|
2004-06-24 16:47:00 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|