* xmlUnlockLibrary: * * xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2 * library. */
| 408 | * library. |
| 409 | */ |
| 410 | void |
| 411 | xmlUnlockLibrary(void) |
| 412 | { |
| 413 | xmlRMutexUnlock(xmlLibraryLock); |
| 414 | } |
| 415 | |
| 416 | /** |
| 417 | * xmlInitThreads: |
nothing calls this directly
no test coverage detected