2004-10-12 19:50:01 +04: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.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-10-12 19:50:01 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OMPI_GEN_REQUEST_H
|
|
|
|
#define OMPI_GEN_REQUEST_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/request/request.h"
|
2004-10-12 19:50:01 +04:00
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC OBJ_CLASS_DECLARATION(ompi_grequest_t);
|
2004-10-12 19:50:01 +04:00
|
|
|
|
2005-03-26 21:49:16 +03:00
|
|
|
/*
|
|
|
|
* Fortran types for the generalized request functions.
|
|
|
|
*/
|
|
|
|
typedef void (MPI_F_Grequest_query_function)(void* extra_state, MPI_Status* status, int* ierr );
|
|
|
|
typedef void (MPI_F_Grequest_free_function)( void* extra_state, int* err );
|
|
|
|
typedef void (MPI_F_Grequest_cancel_function)( void* extra_state, int* complete, int* ierr );
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
MPI_Grequest_query_function* c_query;
|
|
|
|
MPI_F_Grequest_query_function* f_query;
|
|
|
|
} MPI_Grequest_query_fct_t;
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
MPI_Grequest_free_function* c_free;
|
|
|
|
MPI_F_Grequest_free_function* f_free;
|
|
|
|
} MPI_Grequest_free_fct_t;
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
MPI_Grequest_cancel_function* c_cancel;
|
|
|
|
MPI_F_Grequest_cancel_function* f_cancel;
|
|
|
|
} MPI_Grequest_cancel_fct_t;
|
2004-10-12 19:50:01 +04:00
|
|
|
|
|
|
|
struct ompi_grequest_t {
|
|
|
|
ompi_request_t greq_base;
|
2005-03-26 21:49:16 +03:00
|
|
|
MPI_Grequest_query_fct_t greq_query;
|
|
|
|
MPI_Grequest_free_fct_t greq_free;
|
|
|
|
MPI_Grequest_cancel_fct_t greq_cancel;
|
2004-10-12 19:50:01 +04:00
|
|
|
void *greq_state;
|
|
|
|
};
|
|
|
|
typedef struct ompi_grequest_t ompi_grequest_t;
|
|
|
|
|
|
|
|
|
2004-10-20 18:56:52 +04:00
|
|
|
/*
|
|
|
|
* Start a generalized request.
|
|
|
|
*/
|
|
|
|
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC int ompi_grequest_start(
|
2004-10-12 19:50:01 +04:00
|
|
|
MPI_Grequest_query_function *gquery,
|
|
|
|
MPI_Grequest_free_function *gfree,
|
|
|
|
MPI_Grequest_cancel_function *gcancel,
|
|
|
|
void* gstate,
|
|
|
|
ompi_request_t** request);
|
|
|
|
|
2004-10-20 18:56:52 +04:00
|
|
|
/*
|
|
|
|
* Mark a generalized request as complete.
|
|
|
|
*/
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC int ompi_grequest_complete(ompi_grequest_t*);
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-10-12 19:50:01 +04:00
|
|
|
|
|
|
|
#endif
|