package
0.0.0-20190322182713-bf6f0a60fce1
Repository: https://github.com/llvm-mirror/llgo.git
Documentation: pkg.go.dev
# Packages
Package atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms.
# Functions
NewCond returns a new Cond with Locker l.
# Structs
Cond implements a condition variable, a rendezvous point for goroutines waiting for or announcing the occurrence of an event.
A Mutex is a mutual exclusion lock.
Once is an object that will perform exactly one action.
A Pool is a set of temporary objects that may be individually saved and retrieved.
An RWMutex is a reader/writer mutual exclusion lock.
A WaitGroup waits for a collection of goroutines to finish.
# Interfaces
A Locker represents an object that can be locked and unlocked.