#include "mpi.h" int MPI_Cancel( request ) MPI_Request *request;
Cancelling a send operation is much more difficult, in large part because thesend will usually be at least partially complete (the information on the tag, size, and source are usually sent immediately to the destination). MPICHwill support this once other enhancements are completed; however, users areadvised that cancelling a send, while a local operation, is likely tobe expensive (usually generating one or more internal messages).
All MPI objects (e.g., MPI_Datatype, MPI_Comm) are of type INTEGERin Fortran.
A null handle argument is an erroneous IN argument in MPI calls, unless an exception is explicitly stated in the text that defines the function. Such exception is allowed for handles to request objects in Wait and Test calls (sections Communication Completion and Multiple Completions ). Otherwise, a null handle can only be passed to a function that allocates a new object and returns a reference to it in the handle.
All MPI routines (except MPI_Wtime and MPI_Wtick) return an error value; C routines as the value of the function and Fortran routines in the lastargument. Before the value is returned, the current MPI error handler iscalled. By default, this error handler aborts the MPI job. The error handlermay be changed with MPI_Errhandler_set; the predefined error handlerMPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarentee that an MPI program can continue pastan error.
Location:cancel.c