Re: wait_event_* and wake_up_*

2014-07-23 Thread Pranith Kumar
l 23, 2014 at 8:12 AM, Pranith Kumar wrote: > > Hello, > > > > Could someone point me to good documentation about the wait_event_* > > and wake_up_* event family APIs? > > > > I tried searching and nothing concrete shows up. > > > > In particular: > > &

Re: wait_event_* and wake_up_*

2014-07-22 Thread Mohammad Merajul Islam Molla
You may find this useful - http://www.makelinux.net/ldd3/chp-6-sect-2 -- Thanks, -Meraj On Wed, Jul 23, 2014 at 8:12 AM, Pranith Kumar wrote: > Hello, > > Could someone point me to good documentation about the wait_event_* > and wake_up_* event family APIs? > > I tried sea

wait_event_* and wake_up_*

2014-07-22 Thread Pranith Kumar
Hello, Could someone point me to good documentation about the wait_event_* and wake_up_* event family APIs? I tried searching and nothing concrete shows up. In particular: When do we use wake_up_interruptible()? Does wake_up(wq) wake up all the threads which are waiting on that work queue? Is