>백엔드 개발 >C++ >C에서 Boost를 사용하여 스레드 풀을 어떻게 생성합니까?

C에서 Boost를 사용하여 스레드 풀을 어떻게 생성합니까?

DDD
DDD원래의
2024-11-25 18:15:13584검색

How do I create a thread pool using Boost in C  ?

C에서 Boost를 사용하여 스레드 풀 생성

C에서 Boost 라이브러리를 사용하여 스레드 풀을 생성하려면 간단한 프로세스가 필요합니다.

먼저, asio::io_service 및 thread_group을 인스턴스화합니다. 그런 다음 io_service에 연결된 스레드로 thread_group을 채웁니다. 그런 다음 Boost::bind 기능을 사용하여 스레드에 작업을 할당할 수 있습니다.

스레드를 중지하려면 io_service를 중단하고 모두 결합하면 됩니다.

필요한 헤더 파일은 다음과 같습니다.

#include <boost/asio/io_service.hpp>
#include <boost/bind.hpp>
#include <boost/thread/thread.hpp>

아래에 구현 예가 나와 있습니다.

// Establish an io_service and a thread_group (essentially a pool)
boost::asio::io_service ioService;
boost::thread_group threadpool;

// Commence ioService processing loop
boost::asio::io_service::work work(ioService);

// Add threads to pool (e.g., two in this case)
threadpool.create_thread(
    boost::bind(&boost::asio::io_service::run, &ioService)
);
threadpool.create_thread(
    boost::bind(&boost::asio::io_service::run, &ioService)
);

// Assign tasks to thread pool via ioService.post()
// Refer to "http://www.boost.org/doc/libs/1_54_0/libs/bind/bind.html#with_functions" for details on boost::bind
ioService.post(boost::bind(myTask, "Hello World!"));
ioService.post(boost::bind(clearCache, "./cache"));
ioService.post(boost::bind(getSocialUpdates, "twitter,gmail,facebook,tumblr,reddit"));

// Halt ioService processing loop (no new tasks will execute after this point)
ioService.stop();

// Wait and combine threads in thread pool
threadpool.join_all();

(출처: Recipes <아시오)

위 내용은 C에서 Boost를 사용하여 스레드 풀을 어떻게 생성합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.