Partager via


MPI_Error_string fonction

Retourne une chaîne pour un code d’erreur donné.

Syntaxe

int MPIAPI MPI_Error_string(
        int                                                          errorcode,
        _Out_z_cap_post_count_(MPI_MAX_ERROR_STRING,*resultlen) char *string,
  _Out_ int                                                          *resultlen
);

Paramètres

  • code d’erreur
    Code d’erreur retourné par une routine MPI ou une classe d’erreur MPI.

  • string
    Texte qui correspond au code d’erreur.

  • resultlen [out]
    Longueur de la chaîne.

Valeur retournée

Retourne MPI_SUCCESS en cas de réussite. Sinon, la valeur de retour est un code d’erreur.

Dans Fortran, la valeur de retour est stockée dans le paramètre IERROR .

Fortran

    MPI_ERROR_STRING(ERRORCODE, STRING, RESULTLEN, IERROR)
        INTEGER ERRORCODE, RESULTLEN, IERROR
        CHARACTER*(*) STRING

Configuration requise

Produit

HpC Pack 2012 MS-MPI Redistributable Package, HPC Pack 2008 R2 MS-MPI Redistributable Package, HPC Pack 2008 MS-MPI Redistributable Package ou HPC Pack 2008 Client Utilities

En-tête

Mpi.h ; Mpif.h

Bibliothèque

Msmpi.lib

DLL

Msmpi.dll

Voir aussi

Fonctions de gestion MPI