111k views
2 votes
when the pthread cond wait function is called, the system automatically [ select ] the associated mutex variable and then [ select ] . when the corresponding pthread cond signal function is called, the system [ select ] and then [ select ] the associated mutex on its behalf.

1 Answer

2 votes

Answer: unlocks,puts the calling thread to sleep,wakes up the waiting thread, locks

Step-by-step explanation:

when the pthread cond wait function is called, the system automatically [ select ] the-example-1
User Ngoa
by
6.6k points