Comment on Go’s race detector has a mutex blind spotparentComments−stouset1yYou can also just drop it by scoping the mutex guard to the critical area using a block, since it’ll be dropped when it goes out of scope.
Comments
You can also just drop it by scoping the mutex guard to the critical area using a block, since it’ll be dropped when it goes out of scope.