본문 바로가기
반응형

학부공부/OS_운영체제44

PE1. Practice Exercises_2.1~2.8_Text book 101p OS_운영체제 카테고리의 PE Series는 2021.10.20 - [학부공부/OS_운영체제] - 00. 운영체제 STUDY 시작 00. 운영체제 STUDY 시작 안녕하세요! 제가 티스토리 페이지를 만든 후 처음으로 작성하는 글입니다... 복학하기 전 개인적인 공부를 정리하자는 취지로 시작하는 글이라 가독성이 떨어지고 부족한 부분이 있을 수 있으 ku320121.tistory.com 포스팅에서 소개한 text book의 연습문제를 풀이한 것을 정리한 것입니다. 해설을 참고하지 않았기 때문에 풀이에 오류가 있을 수 있습니다. 또한 운영체제 교과목 내용을 벗어나는 내용과 사견이 풀이에 포함되어 있을 수 있습니다. 2.1 What is the purpose of system calls? System call은.. 2022. 7. 10.
TP1.9. Python Part Executable File Excessive Execution Time Problem [OS Scheduling simulator] Python Part Executable File Excessive Execution Time Problem I think the problem is caused by excessive module import. The first thing I thought of when this issue occurred was the time to plot boxes over time in animation creation. To solve this issue, we have devised the following three solutions. In fact, not all solutions were applied, but only some were adopted and reflected in the code. Se.. 2022. 6. 6.
TP1.8. Animation Ideas [OS Scheduling simulator] Animation Creation Ideas 1. Using time.sleep() of the time module 2. Using os module 3. FuncAnimation The first two ideas are very well known methods. I also tried to implement animation through two ideas, but it was not suitable for colab environment and it was difficult to write code friendly to pyplot module. I was able to check the technical documentation about FuncAnimation of the matplotli.. 2022. 6. 6.
TP1.7. History in Colab shared links [OS Scheduling simulator] Track update history in Colab shared links We can see code modifications by different team members, as well as track execution results. This is very useful. 2022. 6. 6.
TP1.6. Corner case [OS Scheduling simulator] Corner case issue We discussed this issue at 3rd BREAKOUT MEETING (05.20.). We have to consider the case where CPU resources are not allocated to any process. The first uploaded Jupyter notebook file does not reflect the corresponding corner case. The unfortunate thing is that the first uploaded code seems to have to reflect the corener case syntactically. However, in reality, it was a code that.. 2022. 6. 6.
TP1.5. File format for Evaluation module [OS Scheduling simulator] File format for Evaluation module Example : tc1_FCFS.txt S E PROCESS 0 4 P1 4 5 P2 5 10 P0 10 17 P4 17 20 P3 20 22 P5 - 각 프로세스의 pid, bursttime, waitingtime, turnaroundtime, responsetime, priority 마지막 세 줄 : avgwait, avgturnaround, avgresponse Note : 각 line 별 줄 바꿈 이전에 ' '(공백)이 하나 있어야합니다! https://github.com/ghpk98/OS-Term-Project/tree/brchSON/testcase/tc1_result 가 도움이 될 수 있습니다. Testcase 구축 담당 팀원께서 .. 2022. 6. 6.
반응형