1802325a39
already-existing "libtrace" on some BSD distros. This commit was SVN r23357.
37 строки
1.1 KiB
C
37 строки
1.1 KiB
C
/*
|
|
* Copyright (c) 2004-2007 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.
|
|
* Copyright (c) 2004-2008 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* Copyright (c) 2006-2009 Cisco Systems, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "ompi/mpi/c/bindings.h"
|
|
|
|
int MPI_Request_free(MPI_Request *request)
|
|
{
|
|
int rank;
|
|
|
|
PMPI_Comm_rank(MPI_COMM_WORLD, &rank);
|
|
|
|
fprintf(stderr, "MPI_REQUEST_FREE[%d]\n", rank);
|
|
fflush(stderr);
|
|
|
|
return PMPI_Request_free(request);
|
|
}
|