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