= nng_mtx_unlock(3supp) // // Copyright 2018 Staysail Systems, Inc. // Copyright 2018 Capitar IT Group BV // // This document is supplied under the terms of the MIT License, a // copy of which should be located in the distribution where this // file was obtained (LICENSE.txt). A copy of the license may also be // found online at https://opensource.org/licenses/MIT. // == NAME nng_mtx_lock - lock mutex == SYNOPSIS [source, c] ---- #include #include void nng_mtx_unlock(nng_mtx *mtx); ---- == DESCRIPTION The `nng_mtx_unlock()` reqlinquishes ownership of the mutex _mtx_ that was previously acquired via <>. IMPORTANT: A mutex can _only_ be unlocked by the thread that locked it. Attempting to unlock a mutex that is not owned by the caller will result in undefined behavior. == RETURN VALUES None. == ERRORS None. == SEE ALSO <>, <>, <>