get_fh.c

来自「fortran并行计算包」· C语言 代码 · 共 27 行

C
27
字号
/*   (C) 2004 by Argonne National Laboratory.       See COPYRIGHT in top-level directory.*/#include "collchk.h" int CollChk_get_fh(MPI_File fh, MPI_Comm *comm){    int cur_idx = 0;    /* find the fh */    while( cur_idx < CollChk_fh_cnt && CollChk_fh_list[cur_idx].fh != fh )        cur_idx++;    /* return the comm if found */    if ( cur_idx < CollChk_fh_cnt && CollChk_fh_list[cur_idx].fh == fh ) {        /* the comm was found */        *comm = CollChk_fh_list[cur_idx].comm;        return 1;    }    else {        /* the comm was not found */        comm = NULL;        return 0;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?