testfile for remote thread invocation
authoradash <adash>
Thu, 13 Sep 2007 07:07:34 +0000 (07:07 +0000)
committeradash <adash>
Thu, 13 Sep 2007 07:07:34 +0000 (07:07 +0000)
Robust/src/Tests/remotethreadtest.java [new file with mode: 0644]

diff --git a/Robust/src/Tests/remotethreadtest.java b/Robust/src/Tests/remotethreadtest.java
new file mode 100644 (file)
index 0000000..db58452
--- /dev/null
@@ -0,0 +1,14 @@
+public class RemoteThread extends Thread {
+       public RemoteThread() {
+       }
+
+       public static void main(String[] st) {
+               int mid = 127;
+               RemoteThread t =null;
+               atomic {
+                   t= global new RemoteThread();
+               }
+               t.start(mid);
+       }
+}
+