projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5872031
)
try to add join support
author
bdemsky
<bdemsky>
Mon, 14 Apr 2008 21:41:21 +0000
(21:41 +0000)
committer
bdemsky
<bdemsky>
Mon, 14 Apr 2008 21:41:21 +0000
(21:41 +0000)
Robust/src/ClassLibrary/Thread.java
patch
|
blob
|
history
diff --git
a/Robust/src/ClassLibrary/Thread.java
b/Robust/src/ClassLibrary/Thread.java
index c44043bdcc499dc29177e7e910e84c973115d0a3..37278c68e9a929a5fc2670987e8eeb93ac9cfecc 100644
(file)
--- 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() {}