跳转到内容
彼岸论坛
欢迎抵达彼岸 彼岸花开 此处谁在 -彼岸论坛

[分享创造] 50 行代码写一个迷你无栈协程框架


已推荐帖子

发表于
玩具项目,不过真的很好玩!

```c
int prime_factor_co(Co *co, void *data)
{
PrimeFactorData *pfData = (PrimeFactorData *)data;
CO_BEGIN(co);

pfData->current = 2;
while (pfData->number > 1)
{
while (pfData->number % pfData->current == 0)
{
pfData->number /= pfData->current;
pfData->factor = pfData->current;
CO_YIELD(co, pfData->factor);
}
pfData->current++;
CO_YIELD(co, 0); // Yield to indicate progress
}

CO_END(co);
return 0;
}
```

https://zhuanlan.zhihu.com/p/710329144
https://github.com/pluveto/minico
  • 游客注册

    游客注册

  • 会员

    没有会员可显示

  • 最新的状态更新

    没有最新的状态更新
  • 最近查看

    • 没有会员查看此页面.
×
×
  • 创建新的...