├── .github └── workflows │ └── go.yml ├── LICENSE ├── Readme.md ├── chan.go ├── go.mod ├── mutex.go └── mutex_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasha-s/go-csync/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasha-s/go-csync/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasha-s/go-csync/HEAD/Readme.md -------------------------------------------------------------------------------- /chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasha-s/go-csync/HEAD/chan.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/sasha-s/go-csync 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /mutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasha-s/go-csync/HEAD/mutex.go -------------------------------------------------------------------------------- /mutex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasha-s/go-csync/HEAD/mutex_test.go --------------------------------------------------------------------------------