惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
小众软件
小众软件
The Cloudflare Blog
博客园 - 【当耐特】
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - 叶小钗
月光博客
月光博客
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
Y
Y Combinator Blog
D
Docker
Microsoft Azure Blog
Microsoft Azure Blog

mmix activity

Adding NXOR to the indes; bug report by A.Scherer (90d53fbf) · Commits · mmix / mmixware · GitLab Adding parentheses around <Scan a decimal constant> (0d240cd1) · 提交 · mmix / mmixware · GitLab fixing a typo and clarifying the packing of rG and rA (92054202) · 提交 · mmix / mmixware · GitLab Fixing possible buffer overrun in b command (d3e1c354) · 提交 · mmix / mmixware · GitLab fixing the check for tininess of short floats (a191a0fb) · 提交 · mmix / mmixware · GitLab
adding test for non zero return of calloc (a980a4cd) · 提...
Ruckert, Martin · 2024-07-31 · via mmix activity

提交 a980a4cd 编辑于 作者: Ruckert, Martin's avatar

浏览文件

原始行号 差异行号 差异行
@@ -741,6 +741,7 @@ for (j=0;j<=funit_count;j++) {
  @<Determine the number of stages, |n|, needed by |funit[j]|@>;
  funit[j].k=n;
  funit[j].co=(coroutine*)calloc(n,sizeof(coroutine));
  if (!funit[j].co) panic(errprint1("Can't allocate coroutine %d",j));
  for (i=0;i<n;i++) {
    funit[j].co[i].name=funit[j].name;
    funit[j].co[i].stage=i+1;