📄 info_free.c
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* $Id: info_free.c,v 1.7 2002/07/09 21:57:49 toonen Exp $ * * (C) 2001 by Argonne National Laboratory. * See COPYRIGHT in top-level directory. */#include "mpiimpl.h"#include "mpiinfo.h"/* -- Begin Profiling Symbol Block for routine MPI_Info_free */#if defined(HAVE_PRAGMA_WEAK)#pragma weak MPI_Info_free = PMPI_Info_free#elif defined(HAVE_PRAGMA_HP_SEC_DEF)#pragma _HP_SECONDARY_DEF PMPI_Info_free MPI_Info_free#elif defined(HAVE_PRAGMA_CRI_DUP)#pragma _CRI duplicate MPI_Info_free as PMPI_Info_free#endif/* -- End Profiling Symbol Block *//* Define MPICH_MPI_FROM_PMPI if weak symbols are not supported to build the MPI routines */#ifndef MPICH_MPI_FROM_PMPI#define MPI_Info_free PMPI_Info_free#endif#undef FUNCNAME#define FUNCNAME MPI_Info_free/*@ MPI_Info_free - Frees an info objectInput Parameters:. info - info object (handle) Notes:.N Errors.N MPI_SUCCESS.N ... others.N fortran@*/int MPI_Info_free( MPI_Info *info ){ static const char FCNAME[] = "MPI_Info_free"; int mpi_errno = MPI_SUCCESS; MPID_Info *info_ptr=0; MPID_MPI_STATE_DECL(MPID_STATE_MPI_INFO_FREE); MPID_MPI_FUNC_ENTER(MPID_STATE_MPI_INFO_FREE); /* Get handles to MPI objects. */ MPID_Info_get_ptr( *info, info_ptr );# ifdef HAVE_ERROR_CHECKING { MPID_BEGIN_ERROR_CHECKS; { if (MPIR_Process.initialized != MPICH_WITHIN_MPI) { mpi_errno = MPIR_Err_create_code( MPI_ERR_OTHER, "**initialized", 0 ); } /* Validate info_ptr */ MPID_Info_valid_ptr( info_ptr, mpi_errno ); if (mpi_errno) { MPID_MPI_FUNC_EXIT(MPID_STATE_MPI_INFO_FREE); return MPIR_Err_return_comm( 0, FCNAME, mpi_errno ); } } MPID_END_ERROR_CHECKS; }# endif /* HAVE_ERROR_CHECKING */ /* ... body of routine ... */ MPIU_Info_free( info_ptr ); *info = MPI_INFO_NULL; /* ... end of body of routine ... */ MPID_MPI_FUNC_EXIT(MPID_STATE_MPI_INFO_FREE); return MPI_SUCCESS;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -