Waitqueue
프로세서를 wait 시킨 후 조건이 충족되면 다시 실행 시킬때 waitqeue를 사용한다 wait_event(wq, condition); wait_event_timeout(wq, condition, timeout); wait_event_cmd(wq, condition, cmd1, cmd2); wait_event_interruptible(wq, condition); wait_event_interruptible_timeout(wq, condition, timeout); wait_event_killable(wq, condition); wait_event(wq, condition); 프로세스가 wake up이 되면 condition을 확인 후 true가 되면 process를 다시 실행시킨다. wait_event..
2023. 12. 13.