C でブーストを使用してスレッド プールを作成して使用するにはどうすればよいですか?

DDD
リリース: 2024-11-16 07:21:02
オリジナル
420 人が閲覧しました

How Can I Create and Use a Thread Pool with Boost in C  ?

C での Boost を使用したスレッド プールの作成と利用

C で Boost を使用してスレッド プールを確立するには、次の手順に従います。

  1. io_service と thread_group を初期化します:
boost::asio::io_service ioService;
boost::thread_group threadpool;
ログイン後にコピー
  1. io_service に関連付けられたスレッドを thread_group に追加します:
threadpool.create_thread(
    boost::bind(&boost::asio::io_service::run, &ioService)
);
ログイン後にコピー
  1. boost::bind:
ioService.post(boost::bind(myTask, "Hello World!"));
ログイン後にコピー

を使用してスレッドにタスクを割り当てます (通常はプログラム時に)終了):

  1. io_service を停止します:
ioService.stop();
ログイン後にコピー
  1. すべてのスレッドに参加します:
threadpool.join_all();
ログイン後にコピー

コード例:

// Create io_service and thread_group
boost::asio::io_service ioService;
boost::thread_group threadpool;

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

// Add threads to the thread pool
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 the thread pool
ioService.post(boost::bind(myTask, "Hello World!"));
ioService.post(boost::bind(clearCache, "./cache"));
ioService.post(boost::bind(getSocialUpdates, "twitter,gmail,facebook,tumblr,reddit"));

// Stop the ioService processing loop
ioService.stop();

// Join all threads in the thread pool
threadpool.join_all();
ログイン後にコピー

要約すると、Boost は、スレッド プールを作成してそれらにタスクを割り当て、C での同時実行を可能にする簡単なメカニズムを提供します。アプリケーション。

以上がC でブーストを使用してスレッド プールを作成して使用するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート