중앙대학교 3-2 리눅스 응용 설계 (손용석 교수님) 과목 정리입니다. Synchronization The need for synchronization Shared resources (data structures, variables) When multiple threads are dependent on a shared resource and they need to access it at the same time, it needs to ensure that only one thread accesses it at a given point in time. ** child thread는 parent thread의 global variable에 접근 가능 ** child process는 parent process..