home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / threads / T16.java < prev    next >
Text File  |  1996-09-28  |  463b  |  26 lines

  1. public class T16 implements Runnable
  2. {
  3.  public static void main(String args[])
  4.  {
  5.   T16 inst = new T16();
  6.   for (int i = 0;; i++)
  7.   {
  8.    Thread t = new Thread(inst, "" + i);
  9.       t.start();
  10.       try
  11.    {
  12.     t.join();
  13.    }  catch(Exception e)
  14.    {
  15.     System.out.println("Thread join interrupted??");
  16.    }
  17.   }
  18.  }
  19.  
  20.  public void run()
  21.  {
  22.   System.out.println(Thread.currentThread().getName());
  23.    // try { Thread.sleep(20); } catch (Exception e) { /*NOP */ 
  24.  }
  25. }
  26.