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

📄 bnr_info_create.cpp

📁 MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程环境.
💻 CPP
字号:
#include "bnr_internal.h"MPICH_BNR_API int BNR_Info_create(BNR_Info *info){    *info	    = new BNR_Info_struct;//(BNR_Info) MALLOC(sizeof(struct MPIR_Info));    (*info)->cookie = BNR_INFO_COOKIE;    (*info)->key    = 0;    (*info)->value  = 0;    (*info)->next   = 0;    /* this is the first structure in this linked list. it is        always kept empty. new (key,value) pairs are added after it. */    return BNR_SUCCESS;}

⌨️ 快捷键说明

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