Go Package sync: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 12: Line 12:
=<tt>WaitGroup</tt>=
=<tt>WaitGroup</tt>=
{{Internal|Go WaitGroup#Overview|<tt>WaitGroup</tt>}}
{{Internal|Go WaitGroup#Overview|<tt>WaitGroup</tt>}}
=<tt>Mutex</tt>=
{{Internal|Go Mutex#Overview|<tt>Mutex</tt>}}


=TO DISTRIBUTE=
=TO DISTRIBUTE=

Revision as of 21:53, 1 September 2023

External

Internal

Overview

The sync package provides synchronization primitives to use when synchronization between goroutines is necessary.

WaitGroup

WaitGroup

Mutex

Mutex

TO DISTRIBUTE

Mutex

A Mutex is a mutual exclusion lock. Only one goroutine can enter the critical section at a time. Not until the call to the Unlock() function issued can another goroutine enter the critical section.

Usage pattern (the curly braces are not necessary):

var mutex sync.Mutex

...

mutex.Lock() {
    // do something in a mutual exclusion mode
}

mutex.Unlock()