1 /*
2 * Copyright (c) 2004-2005 The University of Tennessee and The University
3 * of Tennessee Research Foundation. All rights
4 * reserved.
5 * $COPYRIGHT$
6 *
7 * Additional copyrights may follow
8 *
9 * $HEADER$
10 */
11
12 #include "ompi_config.h"
13
14 #include "pml_example.h"
15
16 int mca_pml_example_cancel(ompi_request_t* request)
17 {
18 return OMPI_SUCCESS;
19 }
20
21 int mca_pml_example_cancelled(ompi_request_t* request, int* flag)
22 {
23 if(NULL != flag)
24 *flag = 0;
25 return OMPI_SUCCESS;
26 }
27