* xmlFreeMutex: * @tok: the simple mutex * * Free a mutex. */
| 183 | * Free a mutex. |
| 184 | */ |
| 185 | void |
| 186 | xmlFreeMutex(xmlMutexPtr tok) |
| 187 | { |
| 188 | if (tok == NULL) |
| 189 | return; |
| 190 | |
| 191 | xmlCleanupMutex(tok); |
| 192 | free(tok); |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * xmlMutexLock: |
nothing calls this directly
no test coverage detected