59
59
* - rearranged synchronization of tested thread
60
60
* - enhanced descripton
61
61
*
62
- * @library /vmTestbase
63
- * /test/lib
62
+ * @library /test/lib
64
63
* @run main/othervm/native -agentlib:contmon01 contmon01
65
64
*/
66
65
67
- import java .io .PrintStream ;
68
-
69
66
public class contmon01 {
70
67
71
- native static void checkMon (int point , Thread thr , Object mon );
72
- native static int getRes ();
68
+ native static void checkMonitor (int point , Thread thread , Object monitor );
73
69
74
70
static {
75
- try {
76
- System .loadLibrary ("contmon01" );
77
- } catch (UnsatisfiedLinkError ule ) {
78
- System .err .println ("Could not load contmon01 library" );
79
- System .err .println ("java.library.path:"
80
- + System .getProperty ("java.library.path" ));
81
- throw ule ;
82
- }
71
+ System .loadLibrary ("contmon01" );
83
72
}
84
73
85
74
public static volatile boolean startingBarrier = true ;
86
75
public static volatile boolean waitingBarrier = true ;
87
76
static Object lockFld = new Object ();
88
-
89
- static boolean DEBUG_MODE = false ;
90
- static PrintStream out = System .out ;
91
-
77
+
92
78
public static void doSleep () {
93
79
try {
94
80
Thread .sleep (10 );
@@ -97,113 +83,97 @@ public static void doSleep() {
97
83
}
98
84
}
99
85
100
- public static int main (String argv []) {
101
- for (int i = 0 ; i < argv .length ; i ++) {
102
- if (argv [i ].equals ("-v" )) // verbose mode
103
- DEBUG_MODE = true ;
104
- }
86
+ public static void main (String argv []) {
87
+ test (false );
88
+ test (true );
89
+ }
105
90
91
+ public static void test (boolean isVirtual ) {
92
+ startingBarrier = true ;
93
+ waitingBarrier = true ;
106
94
Object lock = new Object ();
107
- Thread currThr = Thread .currentThread ();
95
+ Thread currThread = Thread .currentThread ();
108
96
109
- if (DEBUG_MODE )
110
- out .println ("\n Check #1: verifying a contended monitor of current thread \" "
111
- + currThr .getName () + "\" ..." );
97
+ System .out .println ("\n Check #1: verifying a contended monitor of current thread \" "
98
+ + currThread .getName () + "\" ..." );
112
99
synchronized (lock ) {
113
- checkMon (1 , currThr , null );
100
+ checkMonitor (1 , currThread , null );
114
101
}
115
- if (DEBUG_MODE )
116
- out .println ("Check #1 done" );
102
+ System .out .println ("Check #1 done" );
103
+
104
+ contmon01Task task = new contmon01Task ();
117
105
118
- contmon01a thr = new contmon01a ( );
106
+ Thread thread = isVirtual ? Thread . ofVirtual (). start ( task ) : Thread . ofPlatform (). start ( task );
119
107
120
- thr .start ();
121
- if (DEBUG_MODE )
122
- out .println ("\n Waiting for auxiliary thread ..." );
108
+ System .out .println ("\n Waiting for auxiliary thread ..." );
123
109
while (startingBarrier ) {
124
110
doSleep ();
125
111
}
126
- if (DEBUG_MODE )
127
- out .println ("Auxiliary thread is ready" );
112
+ System .out .println ("Auxiliary thread is ready" );
128
113
129
- if (DEBUG_MODE )
130
- out .println ("\n Check #3: verifying a contended monitor of auxiliary thread ..." );
131
- checkMon (3 , thr , null );
132
- if (DEBUG_MODE )
133
- out .println ("Check #3 done" );
114
+ System .out .println ("\n Check #3: verifying a contended monitor of auxiliary thread ..." );
115
+ checkMonitor (3 , thread , null );
116
+ System .out .println ("Check #3 done" );
134
117
135
- thr .letItGo ();
118
+ task .letItGo ();
136
119
137
120
while (waitingBarrier ) {
138
121
doSleep ();
139
122
}
140
123
synchronized (lockFld ) {
141
- if (DEBUG_MODE )
142
- out .println ("\n Main thread entered lockFld's monitor"
124
+ System .out .println ("\n Main thread entered lockFld's monitor"
143
125
+ "\n \t and calling lockFld.notifyAll() to awake auxiliary thread" );
144
126
lockFld .notifyAll ();
145
- if (DEBUG_MODE )
146
- out .println ("\n Check #4: verifying a contended monitor of auxiliary thread ..." );
147
- checkMon (4 , thr , lockFld );
148
- if (DEBUG_MODE )
149
- out .println ("Check #4 done" );
127
+ System .out .println ("\n Check #4: verifying a contended monitor of auxiliary thread ..." );
128
+ checkMonitor (4 , thread , lockFld );
129
+ System .out .println ("Check #4 done" );
150
130
}
151
131
152
- if (DEBUG_MODE )
153
- out .println ("\n Main thread released lockFld's monitor"
132
+ System .out .println ("\n Main thread released lockFld's monitor"
154
133
+ "\n \t and waiting for auxiliary thread death ..." );
155
134
156
135
try {
157
- thr .join ();
136
+ thread .join ();
158
137
} catch (InterruptedException e ) {
159
138
throw new Error ("Unexpected " + e );
160
139
}
161
- if (DEBUG_MODE )
162
- out .println ("\n Check #5: verifying a contended monitor of dead auxiliary thread ..." );
163
- checkMon (5 , thr , null );
164
- if (DEBUG_MODE )
165
- out .println ("Check #5 done" );
166
-
167
- return getRes ();
140
+ System .out .println ("\n Check #5: verifying a contended monitor of dead auxiliary thread ..." );
141
+ checkMonitor (5 , thread , null );
142
+ System .out .println ("Check #5 done" );
168
143
}
169
144
}
170
145
171
146
172
- class contmon01a extends Thread {
147
+ class contmon01Task implements Runnable {
173
148
private volatile boolean flag = true ;
174
149
175
150
public void run () {
176
- if (contmon01 .DEBUG_MODE )
177
- contmon01 .out .println ("check #2: verifying a contended monitor of current auxiliary thread ..." );
178
- contmon01 .checkMon (2 , currentThread (), null );
179
- if (contmon01 .DEBUG_MODE )
180
- contmon01 .out .println ("check #2 done" );
181
-
182
- if (contmon01 .DEBUG_MODE )
183
- contmon01 .out .println ("notifying main thread" );
151
+ System .out .println ("check #2: verifying a contended monitor of current auxiliary thread ..." );
152
+ contmon01 .checkMonitor (2 , Thread .currentThread (), null );
153
+ System .out .println ("check #2 done" );
154
+
155
+ System .out .println ("notifying main thread" );
184
156
contmon01 .startingBarrier = false ;
185
157
186
- if (contmon01 .DEBUG_MODE )
187
- contmon01 .out .println ("thread is going to loop while <flag> is true ..." );
158
+ System .out .println ("thread is going to loop while <flag> is true ..." );
188
159
int i = 0 ;
189
160
int n = 1000 ;
190
161
while (flag ) {
191
162
if (n <= 0 ) {
192
163
n = 1000 ;
164
+ contmon01 .doSleep ();
193
165
}
194
166
if (i > n ) {
195
167
i = 0 ;
196
168
n --;
197
169
}
198
170
i ++;
199
171
}
200
- if (contmon01 .DEBUG_MODE )
201
- contmon01 .out .println ("looping is done: <flag> is false" );
172
+ System .out .println ("looping is done: <flag> is false" );
202
173
203
174
synchronized (contmon01 .lockFld ) {
204
175
contmon01 .waitingBarrier = false ;
205
- if (contmon01 .DEBUG_MODE )
206
- contmon01 .out .println ("\n thread entered lockFld's monitor"
176
+ System .out .println ("\n thread entered lockFld's monitor"
207
177
+ "\n \t and releasing it through the lockFld.wait() call" );
208
178
try {
209
179
contmon01 .lockFld .wait ();
@@ -212,8 +182,7 @@ public void run() {
212
182
}
213
183
}
214
184
215
- if (contmon01 .DEBUG_MODE )
216
- contmon01 .out .println ("thread exiting" );
185
+ System .out .println ("thread exiting" );
217
186
}
218
187
219
188
public void letItGo () {
0 commit comments