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

📄 dlogimpl.h

📁 刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件
💻 H
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//*  $Id: dlogimpl.h,v 1.2 2002/09/27 21:11:14 toonen Exp $ * *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#ifndef _DLOGIMPL#define _DLOGIMPL#if defined(NEEDS_STDLIB_PROTOTYPES) && !defined ( malloc )#include "protofix.h"#endif#include "dlog.h"#if defined(MPIR_MEMDEBUG)/* Enable memory tracing.  This requires MPICH's mpid/util/tr2.c codes */#include "mpimem.h"		/* Chameleon memory debugging stuff */#define MALLOC(a)    MPID_trmalloc((unsigned)(a),__LINE__,__FILE__)#define FREE(a)      MPID_trfree(a,__LINE__,__FILE__)#else#define MALLOC(a)    malloc(a)#define FREE(a)      free(a)#define MPID_trvalid(a)#endifvoid DLOG_dumplog ( void );void DLOG_outblock (double *);void DLOG_dumpblock ( double * );int  DLOG_reclen ( int );void DLOG_msgtype ( int );void DLOG_commtype ( int );void DLOG_colltype ( int );void DLOG_rectype ( int );#endif

⌨️ 快捷键说明

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