Go Mutex and RWMutex: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 21: Line 21:
mutex.Unlock()
mutex.Unlock()
</syntaxhighlight>
</syntaxhighlight>
=Methods=
==<tt>Lock()</tt>==
==<tt>Unlock()</tt>==

Revision as of 19:45, 5 September 2023

External

Internal

Overview

A Mutex is a mutual exclusion lock, implemented as a binary semaphore. 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.

The usage pattern follows, and the curly braces are not necessary, but can be used for clarity:

var mutex sync.Mutex

...

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

mutex.Unlock()

Methods

Lock()

Unlock()