public static void killThread(TestThread_T_05_04 thread) {
   thread.stop = true;
   try {
     thread.join();
   } catch (Throwable tex) {
     System.err.print("Exception was encountered during thread join :" + tex);
   }
 }