コード例 #1
0
ファイル: DrawThread.hpp プロジェクト: macsux/XCSoar
 /**
  * Triggers a redraw.
  */
 void TriggerRedraw() {
   trigger.Signal();
 }
コード例 #2
0
 void Cancel() {
   cancelled.Signal();
 }
コード例 #3
0
ファイル: StoppableThread.hpp プロジェクト: Adrien81/XCSoar
 /**
  * Triggers thread shutdown.  Call Thread::Join() after this to wait
  * synchronously for the thread to exit.
  */
 void BeginStop() {
   stop_trigger.Signal();
 }