Mutex.java 740 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import java.util.concurrent.ThreadLocalRandom;
  2. public abstract class Mutex {
  3. public static void criticalSection(char mark) {
  4. try {
  5. int maxIter = 10;
  6. int minIter = 1;
  7. int rdIter = ThreadLocalRandom.current().nextInt(minIter, maxIter + 1);
  8. System.out.println("^");
  9. for (int k = 0; k < maxIter; k++) {
  10. System.out.println(mark);
  11. Thread.sleep(500);
  12. }
  13. System.out.println("v");
  14. }
  15. catch (InterruptedException e) {
  16. // Nothing
  17. }
  18. }
  19. public static void nonCriticalSection() {
  20. try {
  21. Thread.sleep((int) (Math.random() * 3000));
  22. }
  23. catch (InterruptedException e) {
  24. // Nothing
  25. }
  26. }
  27. // Take ownership
  28. public abstract void p(int id);
  29. // Release ownership
  30. public abstract void v(int id);
  31. }