fiber

1.多线程的程序很多不是为了提高效率,充分利用多 CPU,而是为了逻辑描述方便。

2.纤程往往可以提供更加便捷的描述,因为它只能通过 SwitchToFiber 显式切换,这样可以少许多加解锁的过程。而且切换的效率也比真正的线程来的高

刚接触到fiber这个名词,很不错的东西,将异步化为同步,减少逻辑复杂度

 

实现代码

#include <ucontext.h>

#define FIBER_STACK 1024*64
ucontext_t child, parent;

void threadFunction()
{
  printf("333 Child fiber yielding to parent\n");
  swapcontext(&child, &parent);
  printf("555 Child thread exiting\n");
  swapcontext(&child, &parent);
}

int main()
{
  getcontext(&child);

  child.uc_link = 0;
  child.uc_stack.ss_sp = malloc(FIBER_STACK);
  child.uc_stack.ss_size = FIBER_STACK;
  child.uc_stack.ss_flags = 0;
  if (child.uc_stack.ss_sp == 0)
  {
    perror("malloc: Could not allocate stack");
    exit(1);
  }

  printf("111 Creating child fiber\n");
  makecontext(&child, &threadFunction, 0);

  printf("222 Switching to child fiber\n");
  swapcontext(&parent, &child);
  printf("444 Switching to child fiber again\n");
  swapcontext(&parent, &child);

  free(child.uc_stack.ss_sp);
  printf("666 Child fiber returned and stack freed\n");
  return 0;
}

参考

http://blog.csdn.net/cyberlabs/article/details/6920138

http://timyang.net/category/lua/

http://blog.codingnow.com/2005/10/fiber.html

转载于:https://www.cnblogs.com/brucexu/archive/2012/03/15/2398432.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值