29 下列何者不是死結(Deadlock)的條件?
(A)搶占(preemption)
(B)互斥(mutual exclusion)
(C)持有和等待(hold and wait)
(D)迴圈等待(circular waiting) 

答案:登入後查看
統計: A(467), B(79), C(37), D(84), E(0) #1843885

詳解 (共 1 筆)

#3061547

死結的四個條件是:

禁止搶占 no preemption - 系統資源不能被強制從一個行程中登出

持有和等待 hold and wait - 一個行程可以在等待時持有系統資源

互斥 mutual exclusion - 只有一個行程能持有一個資源

迴圈等待 circular waiting - 一系列行程互相持有其他行程所需要的資源


來源:https://zh.wikipedia.org/wiki/%E6%AD%BB%E9%94%81

23
0