일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 밑바닥부터 시작하는 딥러닝2
- cs231n
- CNN
- RNN
- deep learning
- Transformer
- CPP
- do it! 알고리즘 코딩테스트: c++편
- Positional Encoding
- DFS
- assignment2
- Python
- 딥러닝
- paper review
- Linux
- BFS
- System Call
- Algorithm
- Operating System
- C++
- assignment1
- 밑바닥부터 시작하는 딥러닝
- Gentoo2
- Regularization
- Optimization
- Baekjoon
- SQLD
- Machine Learning
- Adam
- computer vision
- Today
- Total
목록Operating System (5)
newhaneul

본 포스팅은 인하대학교 김기창 교수님의 [202502-EEC4406-001] Operating System을 수강하고 공부한 내용을 정리하기 위한 포스팅입니다. Question:For each problem, you should provide the source code capture, output result, and brief explanation about your answer. 1(15). Write a system call that displays the name of the parent for all processes in the system.1(15). 모든 프로세스에 대해, 각 프로세스의 부모 이름을 화면에 출력하는 시스템콜을 작성하라. 2(15). Modify the kernel so t..

본 포스팅은 인하대학교 김기창 교수님의 [202502-EEC4406-001] Operating System을 수강하고 공부한 내용을 정리하기 위한 포스팅입니다. Question:Make a system call that displays all processes whose name contains the specified string. Make a program that repeats this process until the user types -1. 특정 문자열을 이름에 포함하는 모든 프로세스를 출력하는 시스템콜을 만들고, 사용자가 -1을 입력할 때까지 이 동작을 반복하는 사용자 프로그램을 작성하라Answer:첫 번째 단계는 system call을 선언하는 것이다. 'arch/x86/kernel/sysc..

본 포스팅은 인하대학교 김기창 교수님의 [202502-EEC4406-001] Operating System을 수강하고 공부한 내용을 정리하기 위한 포스팅입니다. Question:Make a system call that displays the number of keyboard interrupts and the number of system calls accumulated so far. ex1.c should look like below. You can use a different system call number. And the output should look similar to below: “지금까지 누적된 ‘키보드 인터럽트 개수’와 ‘시스템 콜 개수’를 출력하는 새로운 시스템콜을 만들라. ex1.c..

본 포스팅은 인하대학교 김기창 교수님의 [202502-EEC4406-001] Operating System을 수강하고 공부한 내용을 정리하기 위한 포스팅입니다. Question: Submit all relevant code, output result, and explanation about your code such as whether it is working or not and if not where it fails, etc. for the following problem. 아래 문제에 대해 모든 관련 코드, 결과 캡쳐, 코드에 대한 설명(작동하는지 여부, 비작동의 경우 어디에서 문제가 있는지 등등)을 제출하기 바랍니다. Write a system call that will display the s..

본 포스팅은 인하대학교 김기창 교수님의 [202502-EEC4406-001] Operating System을 수강하고 공부한 내용을 정리하기 위한 포스팅입니다. Question: Submit all relevant code, output result, and explanation about your code such as whether it is working or not and if not where it fails, etc. for the following problem. 아래 문제에 대해 모든 관련 코드, 결과 캡쳐, 코드에 대한 설명(작동하는지 여부, 비작동의 경우 어디에서 문제가 있는지 등등)을 제출하기 바랍니다. 아래 ex1 을 실행하면:다음과 같이 현재 cpu가 어디에 있는지를 출력하도록 ..