Added distributed RWMutex (#2369)

master
Frank 9 years ago committed by Harshavardhana
parent e55926e8cf
commit 3939c75345
  1. 4
      cmd/namespace-lock.go

@ -18,6 +18,7 @@ package cmd
import (
"errors"
"github.com/minio/dsync"
"sync"
)
@ -29,7 +30,7 @@ type nsParam struct {
// nsLock - provides primitives for locking critical namespace regions.
type nsLock struct {
sync.RWMutex
*dsync.DRWMutex
ref uint
}
@ -58,6 +59,7 @@ func (n *nsLockMap) lock(volume, path string, readLock bool) {
nsLk, found := n.lockMap[param]
if !found {
nsLk = &nsLock{
DRWMutex: dsync.NewDRWMutex(volume + path),
ref: 0,
}
n.lockMap[param] = nsLk

Loading…
Cancel
Save