try to add join support
authorbdemsky <bdemsky>
Mon, 14 Apr 2008 21:41:21 +0000 (21:41 +0000)
committerbdemsky <bdemsky>
Mon, 14 Apr 2008 21:41:21 +0000 (21:41 +0000)
Robust/src/ClassLibrary/Thread.java

index c44043bdcc499dc29177e7e910e84c973115d0a3..37278c68e9a929a5fc2670987e8eeb93ac9cfecc 100644 (file)
@@ -1,4 +1,5 @@
 public class Thread {
+    private int threadid;
 
     public void start() {
        nativeCreate();
@@ -8,6 +9,11 @@ public class Thread {
        t.run();
     }
 
+    public void join() {
+    }
+
+    private native void nativeJoin();
+
     public native static void sleep(long millis);
     
     public void run() {}