nebula/mutex.go
2023-05-09 11:22:55 -04:00

21 lines
260 B
Go

//go:build !mutex_debug
// +build !mutex_debug
package nebula
import (
"sync"
)
type syncRWMutex = sync.RWMutex
func newSyncRWMutex(mutexKey) syncRWMutex {
return sync.RWMutex{}
}
type mutexKey struct {
Type string
SubType string
ID uint32
}