コード例 #1
0
ファイル: bglpthread.cs プロジェクト: mbrock/bigloo-llvm
 // Terminate a thread
 public static bool terminate( bglpthread thread )
 {
     thread.cthread.Abort();
      return true;
 }
コード例 #2
0
ファイル: bglpthread.cs プロジェクト: mbrock/bigloo-llvm
 // Join
 public static void dojoin( bglpthread t )
 {
     t.cthread.Join();
 }