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

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