2004-11-22 03:37:56 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03: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.
|
2015-06-24 06:59:57 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2004-11-28 23:09:25 +03:00
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2004-11-22 03:37:56 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-24 20:47:00 +04:00
|
|
|
#ifndef _MCA_PML_BASE_BSEND_H_
|
|
|
|
#define _MCA_PML_BASE_BSEND_H_
|
|
|
|
|
2009-03-04 18:35:54 +03:00
|
|
|
#include "ompi_config.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/request/request.h"
|
2007-05-16 19:46:52 +04:00
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
2004-06-24 20:47:00 +04:00
|
|
|
|
2005-03-27 17:05:23 +04:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_init(bool enable_mpi_threads);
|
2004-10-28 22:13:43 +04:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_fini(void);
|
2004-06-24 20:47:00 +04:00
|
|
|
|
2007-05-16 19:46:52 +04:00
|
|
|
int mca_pml_base_bsend_attach(void* addr, int size);
|
|
|
|
int mca_pml_base_bsend_detach(void* addr, int* size);
|
2004-06-24 20:47:00 +04:00
|
|
|
|
2005-09-14 21:08:08 +04:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_request_alloc(ompi_request_t*);
|
2004-10-28 22:13:43 +04: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 23:32:26 +04:00
|
|
|
OMPI_DECLSPEC void* mca_pml_base_bsend_request_alloc_buf( size_t length );
|
2015-06-24 06:59:57 +03:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_bsend_request_free(void* addr);
|
2006-07-14 23:32:26 +04:00
|
|
|
|
2007-05-16 19:46:52 +04:00
|
|
|
END_C_DECLS
|
2004-06-24 20:47:00 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|