Go Package sync: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 9: | Line 9: | ||
=Overview= | =Overview= | ||
The <code>sync</code> package provides [[Go_Language_Goroutines#Synchronization|synchronization]] primitives to use when synchronization between [[Go_Language_Goroutines#Synchronization|goroutines]] is necessary. | The <code>sync</code> package provides [[Go_Language_Goroutines#Synchronization|synchronization]] primitives to use when synchronization between [[Go_Language_Goroutines#Synchronization|goroutines]] is necessary. | ||
=Memory Access Primitives= | |||
=Thread Synchronization Primitives= | |||
=<tt>WaitGroup</tt>= | =<tt>WaitGroup</tt>= | ||
{{Internal|Go WaitGroup#Overview|<tt>WaitGroup</tt>}} | {{Internal|Go WaitGroup#Overview|<tt>WaitGroup</tt>}} |
Revision as of 23:58, 2 January 2024
External
Internal
Overview
The sync
package provides synchronization primitives to use when synchronization between goroutines is necessary.