Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/nsk/stress/jni/Interrupter.java
41155 views
1
/*
2
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
package nsk.stress.jni;
25
26
class Interrupter extends Thread {
27
public Interrupter(
28
Thread[] alloc,
29
Synchronizer[] s
30
) {
31
targets = alloc;
32
sync = s;
33
if (DEBUG) System.out.println("Interrupter created.");
34
}
35
36
public void run() {
37
while (!done) {
38
synchronized (sync[2]) {
39
targets[turn].interrupt();
40
}
41
turn = (turn + 1) % targets.length;
42
try {
43
sleep(interval);
44
} catch (InterruptedException e) {
45
}
46
}
47
if (DEBUG) System.out.println("Interrupter::run(): done");
48
}
49
50
public void setInterval(int i) {
51
interval = i;
52
}
53
54
public int getInterval() {
55
return interval;
56
}
57
58
public void halt() {
59
done = true;
60
}
61
62
Thread[] targets;
63
Synchronizer[] sync;
64
private int turn = 0;
65
private int interval = 1000;
66
private boolean done = false;
67
final private static boolean DEBUG = false;
68
}
69
70