projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cdb4db2
)
testfile for remote thread invocation
author
adash
<adash>
Thu, 13 Sep 2007 07:07:34 +0000
(07:07 +0000)
committer
adash
<adash>
Thu, 13 Sep 2007 07:07:34 +0000
(07:07 +0000)
Robust/src/Tests/remotethreadtest.java
[new file with mode: 0644]
patch
|
blob
diff --git a/Robust/src/Tests/remotethreadtest.java
b/Robust/src/Tests/remotethreadtest.java
new file mode 100644
(file)
index 0000000..
db58452
--- /dev/null
+++ b/
Robust/src/Tests/remotethreadtest.java
@@ -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);
+ }
+}
+