Go Package sync: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://golang.org/pkg/sync =Internal= * Standard Library =Overview= The "sync" package contains support for sync...")
 
Line 9: Line 9:
=Overview=
=Overview=


The "sync" package contains support for synchronization among goroutines.
The "sync" package provides synchronization primitives, to be used when synchronization between goroutines is needed.

Revision as of 18:31, 2 April 2016

External

Internal

Overview

The "sync" package provides synchronization primitives, to be used when synchronization between goroutines is needed.