dlogimpl.h

来自「刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件」· C头文件 代码 · 共 42 行

H
42
字号
/* -*- 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 + =
减小字号Ctrl + -
显示快捷键?