「boost::thread 2つのスレッドを動かすシンプルな例」の版間の差分
提供: C++入門
細 (Daemon がページ「Boost thread 2つのスレッドを動かすシンプルな例」を「Boost::thread 2つのスレッドを動かすシンプルな例」に、リダイレクトを残さずに移動しました) |
|
(相違点なし)
|
2013年3月10日 (日) 22:24時点における版
概要
boost threadで2つのスレッドだけを生成するシンプルな例です。
boost_thread_2.cpp の例
ソースコード boost_thread_2.cpp
#include <boost/thread.hpp> #include <iostream> #define MAX 5 void thread_1 () { for (int i = 0; i < MAX; i++) { std::cout << __PRETTY_FUNCTION__ << std::endl; boost::this_thread::sleep(boost::posix_time::milliseconds(100)); } } void thread_2 () { for (int i = 0; i < MAX; i++) { std::cout << __PRETTY_FUNCTION__ << std::endl; boost::this_thread::sleep(boost::posix_time::milliseconds(100)); } } int main(int argc, char const* argv[]) { boost::thread th1(thread_1); boost::thread th2(thread_2); th1.join (); th2.join (); return 0; }
繧?ンパイル
g++ -I/usr/local/include -L/usr/local/lib -Lboost_thread boost_thread_2.cpp -o boost_thread_2
実行例
% ./boost_thread_2 void thread_1() void thread_2() void thread_2() void thread_1() void thread_2() void thread_1() void thread_1() void thread_2() void thread_1() void thread_2()