FileDocCategorySizeDatePackage
RWLock.javaAPI DocExample3108Tue Jan 28 17:27:48 GMT 1997None

RWNode

public class RWNode extends Object

Fields Summary
static final int
READER
static final int
WRITER
Thread
t
int
state
int
nAcquires
Constructors Summary
RWNode(Thread t, int state)

        
        this.t = t;
        this.state = state;
        nAcquires = 0;
    
Methods Summary