summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Include/internal/pycore_lock.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/internal/pycore_lock.h b/Include/internal/pycore_lock.h
index 07bf3db..c89159b 100644
--- a/Include/internal/pycore_lock.h
+++ b/Include/internal/pycore_lock.h
@@ -26,6 +26,9 @@ extern "C" {
// Typical initialization:
// PyMutex m = (PyMutex){0};
//
+// Or initialize as global variables:
+// static PyMutex m;
+//
// Typical usage:
// PyMutex_Lock(&m);
// ...