「boost::thread のスレッドをスリープさせる方法」の版間の差分

提供: C++入門
移動: 案内検索
(Daemon がページ「Boost thread のスレッドをスリープさせる方法」を「Boost::thread のスレッドをスリープさせる方法」に、リダイレクトを残さずに移動しました)
行7: 行7:
 
== 概要 ==
 
== 概要 ==
  
[[C++]] [[boost thread]]のスレッドをスリープさせるやり方です。
+
[[C++]] [[boost::thread]]のスレッドをスリープさせるやり方です。
  
 
== ソースコード ==
 
== ソースコード ==
行17: 行17:
 
== 実行例 ==
 
== 実行例 ==
  
* [[boost thread 2つのスレッドを動かすシンプルな例]]
+
* [[boost::thread 2つのスレッドを動かすシンプルな例]]
  
 
== 関連項目 ==
 
== 関連項目 ==
  
* [[boost thread 2つのスレッドを動かすシンプルな例]]
+
* [[boost::thread 2つのスレッドを動かすシンプルな例]]
* [[boost thread]]
+
* [[boost::thread]]
 
* [[boost]]
 
* [[boost]]

2013年3月10日 (日) 22:26時点における版


概要

C++ boost::threadのスレッドをスリープさせるやり方です。

ソースコード

boost::this_thread::sleep(boost::posix_time::milliseconds(100));

実行例

関連項目