This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 public class Thread {
2
3     public void start() {
4         nativeCreate();
5     }
6
7     private static void staticStart(Thread t) {
8         t.run();
9     }
10
11     public native static void sleep(long millis);
12     
13     public void run() {}
14
15     private native void nativeCreate();
16
17 }