skiprelease(3) - Linux man page
Name
skipRelease - release lock on value.Synopsis
#include <util/skiplist.h> void skipRelease(skipList list, void *lock);
Arguments
list - list containing value to release.lock - lock to release.
Description
Releases the lock on the value associated with <lock>. Once the lock is released, the freeValue callback can be called and the item freed (see skipNewList()).MT-Level: Safe if <list> thread-safe.