source: proiecte/hpl/openmpi_compiled/share/man/man3/MPI_Attr_delete.3 @ 97

Last change on this file since 97 was 97, checked in by (none), 14 years ago

Adding compiled files

File size: 2.2 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Attr_delete 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Attr_delete\fP \- Deletes attribute value associated with a key -- use of this routine is deprecated.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Attr_delete(MPI_Comm\fI comm\fP, int\fI keyval\fP)
13
14.SH Fortran Syntax
15.nf
16INCLUDE 'mpif.h'
17MPI_ATTR_DELETE(\fICOMM\fP,\fI KEYVAL\fP, \fIIERROR\fP)                 
18        INTEGER \fICOMM\fP,\fI KEYVAL\fP,\fI IERROR\fP
19
20
21.SH INPUT PARAMETERS
22.ft R
23.TP 1i
24comm
25Communicator to which attribute is attached (handle).
26.TP 1i
27keyval
28The key value of the deleted attribute (integer).
29
30.SH OUTPUT PARAMETER
31.ft R
32.TP 1i
33IERROR
34Fortran only: Error status (integer).
35
36.SH DESCRIPTION
37This deprecated routine is not available in C++.
38.sp
39Note that use of this routine is \fIdeprecated\fP as of MPI-2. Please use MPI_Comm_delete_attr.
40.sp
41Delete attribute from cache by key. This function invokes the attribute delete function delete_fn specified when the keyval was created. The call will fail if the delete_fn function returns an error code other than MPI_SUCCESS. 
42
43Whenever a communicator is replicated using the function MPI_Comm_dup, all callback copy functions for attributes that are currently set are invoked (in arbitrary order). Whenever a communicator is deleted using the function MPI_Comm_free, all callback delete functions for attributes that are currently set are invoked.
44
45.SH ERRORS
46Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ functions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI:Exception object.
47.sp
48Before the error value is returned, the current MPI error handler is
49called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler
50may be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. 
51
52
Note: See TracBrowser for help on using the repository browser.