Add missing sync.NewCond wrapper#22
Conversation
|
PS as far as I know sync.NewCond was in go1.0 so doesn't need any build tags. |
Codecov Report
@@ Coverage Diff @@
## master #22 +/- ##
=======================================
Coverage 87.09% 87.09%
=======================================
Files 2 2
Lines 217 217
=======================================
Hits 189 189
Misses 20 20
Partials 8 8
Continue to review full report at Codecov.
|
sasha-s
left a comment
There was a problem hiding this comment.
Reviewed 1 of 1 files at r1, all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @ncw)
|
Thanks for this great package! I included it in the talk I gave on deadlocks at gophercon UK :-) The video isn't up yet, alas, but should appear here in due course: https://www.youtube.com/c/GopherConUK/videos |
|
Thanks, will check it out when the video is up. |
I noticed recently while integrating go-deadlock that it was missing a wrapper for sync.NewCond.
Here is a little patch to add it.
Thank you for a great package :-)
This change is