projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73bbc7f
)
put carriage returns in
author
bdemsky
<bdemsky>
Fri, 14 Sep 2007 10:12:45 +0000
(10:12 +0000)
committer
bdemsky
<bdemsky>
Fri, 14 Sep 2007 10:12:45 +0000
(10:12 +0000)
CV: ----------------------------------------------------------------------
Robust/src/Tests/remotethreadtest.java
patch
|
blob
|
history
diff --git
a/Robust/src/Tests/remotethreadtest.java
b/Robust/src/Tests/remotethreadtest.java
index e9c9f2a664640c34eb31713a1d02428f0b36d384..40faa0271f49efbcb50e7e88b1224081ac8eb602 100644
(file)
--- a/
Robust/src/Tests/remotethreadtest.java
+++ b/
Robust/src/Tests/remotethreadtest.java
@@
-8,15
+8,15
@@
public class RemoteThread extends Thread {
atomic {
t= global new RemoteThread();
}
- System.printString("Starting");
+ System.printString("Starting
\n
");
t.start(mid);
- System.printString("Finished");
+ System.printString("Finished
\n
");
//this is ugly...
while(true) ;
}
public int run() {
- System.printString("Remote machine");
+ System.printString("Remote machine
\n
");
}
}