소스 검색

Group state change in critical section

This way, the message of going out is not thrown in a critical
section of another thread.
DricomDragon 5 년 전
부모
커밋
613a201611
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ta1/Task.java

+ 1 - 1
ta1/Task.java

@@ -21,10 +21,10 @@ class Task extends Thread {
 
 			System.out.println( name + " is CRITICAL!");
 			Mutex.criticalSection(((Integer)id).toString());
+			System.out.println( name + " isn't critical anymore.");
 
 			critical.v(id);
 
-			System.out.println( name + " isn't critical anymore.");
 			Mutex.nonCriticalSection();
 		}
 	}