Codebase list golang-github-anacrolix-missinggo / debian/2.1.0-3 sync.go
debian/2.1.0-3

Tree @debian/2.1.0-3 (Download .tar.gz)

sync.go @debian/2.1.0-3raw · history · blame

package missinggo

import (
	"sync"
)

type RWLocker interface {
	sync.Locker
	RLock()
	RUnlock()
}