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

📄 synch.c

📁 spice中支持多层次元件模型仿真的可单独运行的插件源码
💻 C
字号:
/* $Header: /home/harrison/c/tcgmsg/ipcv4.0/RCS/synch.c,v 1.1 91/12/06 17:27:39 harrison Exp Locker: harrison $ */#include "sndrcv.h"#ifdef OLDSYNCvoid SYNCH_(type)     long *type;/*  Synchronize by forcing all process to exchange a zero length message  of given type with process 0.*/{  long me = NODEID_();  long nproc = NNODES_();  char *buf = "";  long zero = 0;  long sync = 1;  long from, lenmes, i;  /* First everyone sends null message to zero */  if (me == 0)    for (i=1; i<nproc; i++)      RCV_(type, buf, &zero, &lenmes, &i, &from, &sync);  else    SND_(type, buf, &zero, &zero, &sync);  /* Zero broadcasts message null message to everyone */  BRDCST_(type, buf, &zero, &zero);}#else/*ARGSUSED*/void SYNCH_(type)     long *type;/*  Synchronize by doing a global sum of a single integer variable  ... as long type is unique there should be no problems.*/{  long junk = 0, n = 1;  IGOP_(type, &junk, &n, "+");}#endif

⌨️ 快捷键说明

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