MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlFreeMutex

Function xmlFreeMutex

ThirdParty/libxml2/vtklibxml2/threads.c:185–193  ·  view source on GitHub ↗

* xmlFreeMutex: * @tok: the simple mutex * * Free a mutex. */

Source from the content-addressed store, hash-verified

183 * Free a mutex.
184 */
185void
186xmlFreeMutex(xmlMutexPtr tok)
187{
188 if (tok == NULL)
189 return;
190
191 xmlCleanupMutex(tok);
192 free(tok);
193}
194
195/**
196 * xmlMutexLock:

Callers

nothing calls this directly

Calls 1

xmlCleanupMutexFunction · 0.85

Tested by

no test coverage detected