having new variable 'inter' in-between "reorder/antialias" and "hybrid" in order...
[IRC.git] / Robust / src / Tests / remotethreadtest.java
1 public class RemoteThread extends Thread {
2     public RemoteThread() {
3     }
4     
5     public static void main(String[] st) {
6         int mid = (128<<24)|(200<<16)|(9<<8)|26;
7         RemoteThread t =null;
8         atomic {
9             t= global new RemoteThread();
10         }
11         System.printString("Starting\n");
12         t.start(mid);
13         System.printString("Finished\n");
14         //this is ugly...
15         while(true) ;
16     }
17
18     public int run() {
19         System.printString("Remote machine\n");
20     }
21 }
22