⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mpid_close_port.c

📁 刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件
💻 C
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* * *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#include "mpidimpl.h"/*@   MPID_Close_port - close port   Arguments:.  char *port_name - port name   Notes:.N Fortran.N Errors.N MPI_SUCCESS@*/int MPID_Close_port(char *port_name){    int ret_val;    MPIDI_STATE_DECL(MPID_STATE_MPID_CLOSE_PORT);    MPIDI_FUNC_ENTER(MPID_STATE_MPID_CLOSE_PORT);    ret_val = mm_close_port(port_name);    MPIDI_FUNC_EXIT(MPID_STATE_MPID_CLOSE_PORT);    return ret_val;}

⌨️ 快捷键说明

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