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

📄 mm_shm_pre.h

📁 刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件
💻 H
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#ifndef MM_SHM_PRE_H#define MM_SHM_PRE_Htypedef struct MM_Car_data_shm{    union mm_car_data_shm_buf    {	struct car_shm_simple	{	    int num_written;	} simple;	struct car_shm_tmp	{	    int num_written;	} tmp;	struct car_shm_vec	{	    MPID_IOV vec[MPID_IOV_LIMIT];	    int len;	} vec;#ifdef WITH_METHOD_SHM	struct car_shm_shm	{	    int num_written;	} shm;#endif#ifdef WITH_METHOD_VIA	struct car_shm_via	{	    int num_written;	} via;#endif#ifdef WITH_METHOD_VIA_RDMA	struct car_shm_via_rdma	{	    int num_written;	} via_rdma;#endif    } buf;} MM_Car_data_shm;#endif

⌨️ 快捷键说明

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