임계 영역과 락

image.png

image.png

락 변수

핵심 질문

임계 영역에서 인터럽트 비활성화

void lock() {
	disableinterrupts();
}
void unlock(){
	enableinterrupts();
}