28 lines
680 B
Groff
28 lines
680 B
Groff
.TH MPI_Errhandler_c2f 3 "2/3/2025" " " "MPI"
|
|
.SH NAME
|
|
MPI_Errhandler_c2f \- converts MPI_Errhandler to Fortran INTEGER
|
|
.SH SYNOPSIS
|
|
.nf
|
|
.fi
|
|
.nf
|
|
MPI_Fint MPI_Errhandler_c2f(MPI_Errhandler errhandler)
|
|
.fi
|
|
|
|
|
|
.SH INPUT PARAMETERS
|
|
.PD 0
|
|
.TP
|
|
.B errhandler
|
|
- MPI error handler (handle)
|
|
.PD 1
|
|
|
|
.SH THREAD AND INTERRUPT SAFETY
|
|
|
|
This routine is thread-safe. This means that this routine may be
|
|
safely used by multiple threads without the need for any user-provided
|
|
thread locks. However, the routine is not interrupt safe. Typically,
|
|
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.
|
|
|