coding-lab/sync/rwmutex.go

10 lines
90 B
Go

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