コード例 #1
0
ファイル: DrawThread.hpp プロジェクト: macsux/XCSoar
 /**
  * To be removed, only used by GlueMapWindow::Idle().
  */
 bool IsTriggered() {
   return trigger.Test();
 }
コード例 #2
0
ファイル: StoppableThread.hpp プロジェクト: Adrien81/XCSoar
 /**
  * Check this thread has received the "Stop" comand.
  */
 bool CheckStopped() const {
   return stop_trigger.Test();
 }