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 중국어 웹사이트의 기타 관련 기사를 참조하세요!