concurrency1 [Operating System Concepts] Chapter4 Thread & Concurrency Overview Multicore Programming Multithreading Model POSIX thread(pthread) Implicit Threading Overview 지금까지 하나의 프로세스의 single thread control에 다루었다. 복제할 필요없이 하나의 프로세스에서 다른 스레드를 생성하는 방식으로 만들었다. Thread (=LWP : Light weight process) cpu 를 점유하는 가장 작은 단위가 스레드가 된다. process id(pid) 가 cpu를 점유하는게 아니라 thread id(tid)가 cpu를 점유한다. program counter, register set, stack또한 스레드 단위로 달라진다. 한 프로세스 내부에서 생긴 스레드들은 code / .. 2023. 10. 31. 이전 1 다음 반응형