Upgrade macos

This commit is contained in:
Bassem Girgis
2025-03-19 08:52:56 -05:00
parent 53580cb51f
commit d29ef955f5
8041 changed files with 1936720 additions and 130842 deletions

View File

@@ -1,22 +1,34 @@
.TH MPI_Errhandler_set 3 "6/5/2019" " " "MPI"
.TH MPI_Errhandler_set 3 "2/3/2025" " " "MPI"
.SH NAME
MPI_Errhandler_set \- Sets the error handler for a communicator
.SH SYNOPSIS
.nf
.fi
.nf
int MPI_Errhandler_set(MPI_Comm comm, MPI_Errhandler errhandler)
.fi
.SH INPUT PARAMETERS
.PD 0
.TP
.B comm
- communicator to set the error handler for (handle)
- communicator (handle)
.PD 1
.PD 0
.TP
.B errhandler
- new MPI error handler for communicator (handle)
- new error handler for communicator (handle)
.PD 1
.SH REMOVED FUNCTION
The current MPI standard defines this routine as removed. The user should use
the replacement routine.
The replacement for this routine is
.I MPI_Comm_set_errhandler
\&.
.SH THREAD AND INTERRUPT SAFETY
This routine is thread-safe. This means that this routine may be
@@ -26,16 +38,6 @@ this is due to the use of memory allocation routines such as
.I malloc
or other non-MPICH runtime routines that are themselves not interrupt-safe.
.SH DEPRECATED FUNCTION
The MPI-2 standard deprecated a number of routines because MPI-2 provides
better versions. This routine is one of those that was deprecated. The
routine may continue to be used, but new code should use the replacement
routine.
The replacement for this routine is
.I MPI_Comm_set_errhandler
\&.
.SH NOTES FOR FORTRAN
All MPI routines in Fortran (except for
.I MPI_WTIME
@@ -84,7 +86,7 @@ its use is deprecated. The predefined error handler
may be used to cause error values to be returned.
Note that MPI does
.B not
guarentee that an MPI program can continue past
guarantee that an MPI program can continue past
an error; however, MPI implementations will attempt to continue whenever
possible.
@@ -103,11 +105,11 @@ communicator in a call (not even allowed in
.PD 1
.PD 0
.TP
.B MPI_ERR_ARG
- Invalid argument. Some argument is invalid and is not
identified by a specific error class (e.g.,
.I MPI_ERR_RANK
).
.B MPI_ERR_OTHER
- Other error; use
.I MPI_Error_string
to get more information
about this error code.
.PD 1
.SH SEE ALSO