Files
gvisor/pkg/sync
Ian Gudger 288fcb8218 Use standard library sync.Mutex.TryLock.
The standard library sync.Mutex has included a TryLock method since Go 1.18.
There is no longer a need to implement a parallel version with unsafe. Using
the standard library version reduces the ongoing maintenance cost of this
package.

https://pkg.go.dev/sync#Mutex.TryLock
https://tip.golang.org/doc/go1.18#minor_library_changes
2022-10-15 23:55:24 -07:00
..
2022-05-17 17:48:35 -07:00
2020-03-25 10:55:22 -07:00
2022-10-15 23:55:24 -07:00
2022-05-17 17:48:35 -07:00
2020-01-09 22:02:24 -08:00
2020-07-12 17:22:08 -07:00
2022-05-17 17:48:35 -07:00
2022-05-17 17:48:35 -07:00

sync

This package provides additional synchronization primitives not provided by the Go stdlib 'sync' package. It is partially derived from the upstream 'sync' package from go1.10.