We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.exe
.pkg
예를 들어
프로세스
그래서 프로세스는
여러 개의 프로세스를 어떻게 관리할까?
장점
단점
왜?
The text was updated successfully, but these errors were encountered:
Interface Thread
🔖 참고
Sorry, something went wrong.
No branches or pull requests
1. 프로세스와 멀티 프로세싱
프로그램
.exe
,.pkg
등으로 끝나는 프로그램 파일들프로세스
예를 들어
프로세스
이다.→ 크롬에서 여러 창을 열 수 있는데 이는 각각의 프로세스
→ 크롬 창을 출력하는 작업을 실행하면, 이 역시 CPU에 올라가게 되고 이것도 하나의 프로세스
그래서 프로세스는
여러 개의 프로세스를 어떻게 관리할까?
멀티 프로세싱
장점
단점
왜?
프로세스는 독립된 메모리의 영역을 할당(공유 자원 X)→ 캐시에 있는 모든 데이터를 리셋하고, 다시 메모리에 올릴 프로세스의 캐시 정보를 불러와야 한다.
2. 쓰레드와 멀티 쓰레드
쓰레드Thread
멀티 쓰레드 Multi-thread
3. 멀티 프로세싱 vs 멀티 쓰레드 ?
멀티쓰레드 사용의
장점
멀티쓰레드 사용의
단점
🔖 출처
The text was updated successfully, but these errors were encountered: