예제 #1
0
파일: txg.c 프로젝트: Zak-Adelman/zfs
void
txg_list_destroy(txg_list_t *tl)
{
	int t;

	for (t = 0; t < TXG_SIZE; t++)
		ASSERT(txg_list_empty(tl, t));

	mutex_destroy(&tl->tl_lock);
}
예제 #2
0
파일: txg.c 프로젝트: coyizumi/cs111
/*
 * Returns true if all txg lists are empty.
 *
 * Warning: this is inherently racy (an item could be added immediately after this
 * function returns). We don't bother with the lock because it wouldn't change the
 * semantics.
 */
boolean_t
txg_all_lists_empty(txg_list_t *tl)
{
	for (int i = 0; i < TXG_SIZE; i++) {
		if (!txg_list_empty(tl, i)) {
			return (B_FALSE);
		}
	}
	return (B_TRUE);
}