Lines Matching full:writer
4 * RT-specific reader/writer semaphores and reader/writer locks
26 * 2) Wake the writer waiting in down_write()/write_lock() #3
29 * locks on RT are not writer fair, but writers, which should be avoided in
33 * It's possible to make the rw primitives writer fair by keeping a list of
34 * active readers. A blocked writer would force all newly incoming readers
41 * The risk of writer starvation is there, but the pathological use cases
80 * Reader1 Reader2 Writer in __rwbase_read_lock()
88 * wake(Writer) in __rwbase_read_lock()
102 * That would put Reader1 behind the writer waiting on in __rwbase_read_lock()
115 * On success the rtmutex is held, so there can't be a writer in __rwbase_read_lock()
149 * Wake the writer, i.e. the rtmutex owner. It might release the in __rwbase_read_unlock()
168 * rwb->readers can only hit 0 when a writer is waiting for the in rwbase_read_unlock()