1
1
openmpi/src/request/request.c
Ginger Young 0c0dd534b7 Back out come fortran<->C table code. It's breaking
things, and not enough of it is written to do anything.

This commit was SVN r1480.
2004-06-25 15:22:36 +00:00

33 строки
550 B
C

/*
* $HEADER$
*/
#include "request/request.h"
#include "include/constants.h"
/*
* Table for Fortran <-> C Request handle conversion
*/
ompi_pointer_array_t *ompi_req_f_to_c_table;
ompi_pointer_array_t ompi_req_table;
static void ompi_request_construct(ompi_request_t* req)
{
req->req_state = OMPI_REQUEST_INVALID;
}
static void ompi_request_destruct(ompi_request_t* req)
{
req->req_state = OMPI_REQUEST_INVALID;
}
OBJ_CLASS_INSTANCE(
ompi_request_t,
ompi_object_t,
ompi_request_construct,
ompi_request_destruct);