Exemple #1
0
 public StReentrantReadWriteLock() {
     rwlock = new StReadWriteLock(0);
 }
Exemple #2
0
        //
        // Constructors.
        //

        public StReentrantReadWriteLock(int spinCount) {
            rwlock = new StReadWriteLock(spinCount);
        }