其他分享
首页 > 其他分享> > C线程池

C线程池

作者:互联网

什么是C的线程池的良好开源实现,以便在生产代码中使用(类似于boost)?

请提供您自己的示例代码或示例代码使用的链接.

解决方法:

我认为它还没有被Boost接受,但是一个很好的注意点:
threadpool.网站上的一些使用示例:

#include "threadpool.hpp"

using namespace boost::threadpool;

// Some example tasks
void first_task()
{
  ...
}

void second_task()
{
  ...
}

void third_task()
{
  ...
}

void execute_with_threadpool()
{
  // Create a thread pool.
  pool tp(2);

  // Add some tasks to the pool.
  tp.schedule(&first_task);
  tp.schedule(&second_task);
  tp.schedule(&third_task);

  // Leave this function and wait until all tasks are finished.
}

池中的参数“2”表示线程数.在这种情况下,tp的销毁会等待所有线程完成.

标签:boost-thread,c,multithreading,boost,threadpool
来源: https://codeday.me/bug/20190923/1814787.html