package
0.0.0-20130121074735-1d03baafba06
Repository: https://github.com/icattlecoder/go.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.
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.