Go Mutex and RWMutex: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 8: Line 8:
A <code>Mutex</code> is a mutual exclusion lock. Only one goroutine can enter the critical section at a time. Not until the call to the <code>Unlock()</code> function issued can another goroutine enter the critical section.
A <code>Mutex</code> is a mutual exclusion lock. Only one goroutine can enter the critical section at a time. Not until the call to the <code>Unlock()</code> function issued can another goroutine enter the critical section.


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


<syntaxhighlight lang='go'>
<syntaxhighlight lang='go'>

Revision as of 19:42, 5 September 2023

External

Internal

Overview

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.

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()