summaryrefslogtreecommitdiffstats
path: root/jrt/tests/com/yahoo/jrt/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'jrt/tests/com/yahoo/jrt/Test.java')
-rw-r--r--jrt/tests/com/yahoo/jrt/Test.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/jrt/tests/com/yahoo/jrt/Test.java b/jrt/tests/com/yahoo/jrt/Test.java
index efde0c57912..d797bd6d1c9 100644
--- a/jrt/tests/com/yahoo/jrt/Test.java
+++ b/jrt/tests/com/yahoo/jrt/Test.java
@@ -13,18 +13,18 @@ public class Test {
* testing.
**/
public static class Orb extends Supervisor {
- public int initCount = 0;
- public int liveCount = 0;
- public int readRequestCount = 0;
- public int readReplyCount = 0;
- public int readErrorCount = 0;
- public long readBytes = 0;
- public int writeRequestCount = 0;
- public int writeReplyCount = 0;
- public int writeErrorCount = 0;
- public long writeBytes = 0;
- public int downCount = 0;
- public int finiCount = 0;
+ public volatile int initCount = 0;
+ public volatile int liveCount = 0;
+ public volatile int readRequestCount = 0;
+ public volatile int readReplyCount = 0;
+ public volatile int readErrorCount = 0;
+ public volatile long readBytes = 0;
+ public volatile int writeRequestCount = 0;
+ public volatile int writeReplyCount = 0;
+ public volatile int writeErrorCount = 0;
+ public volatile long writeBytes = 0;
+ public volatile int downCount = 0;
+ public volatile int finiCount = 0;
public Orb(Transport t) {
super(t);