pub unsafe extern "C" fn qemu_lockcnt_inc_and_unlock(
    lockcnt: *mut QemuLockCnt
)
Expand description

qemu_lockcnt_inc_and_unlock: combined unlock/increment on a QemuLockCnt. @lockcnt: the lockcnt to operate on.

This is the same as

qemu_lockcnt_unlock(lockcnt);
qemu_lockcnt_inc(lockcnt);

but more efficient.