Correct the file ..incorrect checkin the first time
authoradash <adash>
Tue, 11 Sep 2007 23:02:49 +0000 (23:02 +0000)
committeradash <adash>
Tue, 11 Sep 2007 23:02:49 +0000 (23:02 +0000)
Robust/src/ClassLibrary/ThreadDSM.java

index d8890d1e943e6c13080d112b8b7948eb3d81fa9a..cc659e7a2455eaed189460345b3185203567c7cb 100644 (file)
@@ -1,14 +1,14 @@
-public class ThreadDSM {
+public class Thread {
 
        public void start(int mid) {
-               run(mid);
+               remotethreadstart(mid);
        }
 
        public native static void sleep(long millis);
 
-       public void run(int mid) {
+       public void run() {
 
        }
        
-       public int startRemoteThread(int mid);
+       public  native void remotethreadstart(int mid);
 }