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 / ttest.java < prev   
Text File  |  1996-09-28  |  379b  |  26 lines

  1. import java.util.*;
  2.  
  3. public class ttest {
  4.  
  5.   public static void main(String args[]) {
  6.     TestThread t1 = new TestThread();
  7.     TestThread t2 = new TestThread();
  8.     t2.start();
  9.     t1.start();
  10.   }
  11. }
  12.  
  13. class TestThread extends Thread {
  14.   int cnt = 0;
  15.  
  16.   TestThread() {
  17.   }
  18.  
  19.   public void run() {
  20.     while (1 == 1) {
  21.       System.err.println("run "+cnt);
  22.       cnt++;
  23.     }
  24.   }
  25. }
  26.