From: bdemsky Date: Mon, 14 Apr 2008 21:41:21 +0000 (+0000) Subject: try to add join support X-Git-Tag: preEdgeChange~166 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8cb58d3f2a923715ae372b432063fa57a9322564;p=IRC.git try to add join support --- diff --git a/Robust/src/ClassLibrary/Thread.java b/Robust/src/ClassLibrary/Thread.java index c44043bd..37278c68 100644 --- a/Robust/src/ClassLibrary/Thread.java +++ b/Robust/src/ClassLibrary/Thread.java @@ -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() {}