Пример #1
0
int MPI_Errhandler_create( 
        MPI_Handler_function *function,
        MPI_Errhandler       *errhandler)
{
  _MPI_COVERAGE();
  return PMPI_Errhandler_create (function, errhandler);
}
Пример #2
0
/**
 * Measurement wrapper for MPI_Errhandler_create
 * @note Auto-generated by wrapgen from template: std.w
 * @note C interface
 * @note Introduced with MPI 1.0
 * @ingroup err
 */
int MPI_Errhandler_create(MPI_Handler_function* function,
                          MPI_Errhandler*       errhandler)
{
    int return_val;

    if (IS_EVENT_GEN_ON_FOR(ERR))
    {
        EVENT_GEN_OFF();
        esd_enter(epk_mpi_regid[EPK__MPI_ERRHANDLER_CREATE]);

        return_val = PMPI_Errhandler_create(function, errhandler);

        esd_exit(epk_mpi_regid[EPK__MPI_ERRHANDLER_CREATE]);
        EVENT_GEN_ON();
    }
    else
    {
        return_val = PMPI_Errhandler_create(function, errhandler);
    }

    return return_val;
}
Пример #3
0
int MPI_Errhandler_create(MPI_Handler_function *function, MPI_Errhandler *eh)
{
  int rc = PMPI_Errhandler_create(function, eh); 
  Errhandler2Callpath.allocate(*eh, chop); 
  return rc; 
}
Пример #4
0
int MPI_Errhandler_create(MPI_Handler_function* function, MPI_Errhandler* errhandler) {
  return PMPI_Errhandler_create(function, errhandler);
}