This function is useful to initialize a mutex that has been
allocated on the stack, or as part of a larger structure.
It is not necessary to initialize a mutex that has been
statically allocated.
typedefstruct {
GMutex m;
...
} Blob;
Blob *b;
b = g_new (Blob, 1);
g_mutex_init (&b->m);
Initializes a #GMutex so that it can be used.
This function is useful to initialize a mutex that has been allocated on the stack, or as part of a larger structure. It is not necessary to initialize a mutex that has been statically allocated.
To undo the effect of glib.mutex.Mutex.init_ when a mutex is no longer needed, use glib.mutex.Mutex.clear.
Calling glib.mutex.Mutex.init_ on an already initialized #GMutex leads to undefined behaviour.