| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- System Call
- Positional Encoding
- Operating System
- DFS
- paper review
- computer vision
- cs231n
- Optimization
- Machine Learning
- CNN
- RNN
- 밑바닥부터 시작하는 딥러닝
- 딥러닝
- Linux
- SQLD
- Process
- do it! 알고리즘 코딩테스트: c++편
- Baekjoon
- 밑바닥부터 시작하는 딥러닝2
- Transformer
- assignment2
- Python
- Gentoo2
- deep learning
- Regularization
- assignment1
- BFS
- Algorithm
- C++
- CPP
- Today
- Total
목록Process (5)
newhaneul
본 포스팅은 인하대학교 김기창 교수님의 [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. Do not use ChatGPT or ChatGPT-like AI system. If I suspect any use of these systems, there will be a heavy penalty. 아래 문제에 대해 모든..
본 포스팅은 인하대학교 김기창 교수님의 [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(10). Write a system call that displays all processes whose parent has pid=1. 1(10). 부모 프로세스의 PID가 1인 모든 프로세스를 출력하는 시스템 콜을 작성한다. 2(10). ..
본 포스팅은 인하대학교 김기창 교수님의 [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. Do not use ChatGPT or ChatGPT-like AI system. If I suspect any use of these systems, there will be a heavy penalty. 아래 문제에 대해 모든..
본 포스팅은 인하대학교 김기창 교수님의 [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..