wait_event_interruptible


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users wait_event_interruptible
# 1  
Old 03-08-2006
Data wait_event_interruptible

hi,
wait_event_interruptible:what is the function of this api?
Can anybody plz explain?

regards
sriram
# 2  
Old 03-08-2006
any process blocking on a read call needs to be eventually put to sleep
untill data for which the process is blocked is available,

and this api wait_event_interruptible would put the process that is blocked
to sleep state with guaranteed avoid of any race condition upon invoking the
process later

but this api needs a condition to be passed to wake up the process put to sleep
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question