|
@@ -1,9 +1,20 @@
|
|
|
+import java.util.concurrent.ThreadLocalRandom;
|
|
|
|
|
|
public abstract class Mutex {
|
|
|
|
|
|
- public static void criticalSection() {
|
|
|
+ public static void criticalSection(char mark) {
|
|
|
try {
|
|
|
- Thread.sleep((int) (Math.random() * 3000));
|
|
|
+ int maxIter = 10;
|
|
|
+ int minIter = 1;
|
|
|
+
|
|
|
+ int rdIter = ThreadLocalRandom.current().nextInt(minIter, maxIter + 1);
|
|
|
+
|
|
|
+ System.out.println("^");
|
|
|
+ for (int k = 0; k < maxIter; k++) {
|
|
|
+ System.out.println(mark);
|
|
|
+ Thread.sleep(500);
|
|
|
+ }
|
|
|
+ System.out.println("v");
|
|
|
}
|
|
|
catch (InterruptedException e) {
|
|
|
// Nothing
|