1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

c++ builder / TTreahd > スレッド終了後の処理

Last updated at Posted at 2016-05-19
動作確認
C++ Builder XE4

TThreadインスタンスを作成した側(例: Main.cpp)でTThreadインスタンス終了後の処理をする場合、スレッドの終了を検知する必要がある。

TThreadにはIsTermiantedプロパティがあるが、これはTerminate()をコールした時点でtrueになるので、実際にTThreadが終了したわけではない。

代わりの方法として3つ提案されている。

  • WaitForを使う
  • MsgWaitForMultipleObjectsを使う
  • OnTerminateを使う

http://qiita.com/7of9/items/0b78b5ef45cf0a09a6cd
で実装したようなことはしなくても良いのかもしれない。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?