FileDocCategorySizeDatePackage
RWLock.javaAPI DocExample3441Thu Feb 04 16:10:40 GMT 1999None

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