projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91e668d
)
check in code
author
bdemsky
<bdemsky>
Fri, 10 Aug 2007 08:03:28 +0000
(08:03 +0000)
committer
bdemsky
<bdemsky>
Fri, 10 Aug 2007 08:03:28 +0000
(08:03 +0000)
Robust/src/ClassLibrary/ThreadDSM.java
[new file with mode: 0644]
patch
|
blob
diff --git a/Robust/src/ClassLibrary/ThreadDSM.java
b/Robust/src/ClassLibrary/ThreadDSM.java
new file mode 100644
(file)
index 0000000..
3008a06
--- /dev/null
+++ b/
Robust/src/ClassLibrary/ThreadDSM.java
@@ -0,0
+1,15
@@
+public class Thread {
+ public void start() {
+ nativeCreate();
+ }
+
+ private static void staticStart(Thread t) {
+ t.run();
+ }
+
+ public native static void sleep(long millis);
+
+ public void run() {}
+
+ private native void nativeCreate();
+}