Concurrency를 지키기 위한 3가지의 툴에 대한 노트입니다. * All the code below is a harmony code Before we start, it is important to mention Atomic Section IS NOT Critical Section Atomic Section (Mutex) Critical Section - one thread running among different processes - Single Thread: no other threads can run while running t1 - good for interlock instruction - one thread running within one process - multiple threads ..