summaryrefslogtreecommitdiffhomepage
path: root/pkg/sync/aliases.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/sync/aliases.go')
-rw-r--r--pkg/sync/aliases.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/sync/aliases.go b/pkg/sync/aliases.go
index d2d7132fa..0d4316254 100644
--- a/pkg/sync/aliases.go
+++ b/pkg/sync/aliases.go
@@ -29,3 +29,8 @@ type (
// Map is an alias of sync.Map.
Map = sync.Map
)
+
+// NewCond is a wrapper around sync.NewCond.
+func NewCond(l Locker) *Cond {
+ return sync.NewCond(l)
+}