Searched refs:txl (Results 1 – 1 of 1) sorted by relevance
182 smb_net_txl_constructor(smb_txlst_t *txl) in smb_net_txl_constructor() argument184 ASSERT(txl->tl_magic != SMB_TXLST_MAGIC); in smb_net_txl_constructor()186 mutex_init(&txl->tl_mutex, NULL, MUTEX_DEFAULT, NULL); in smb_net_txl_constructor()187 cv_init(&txl->tl_wait_cv, NULL, CV_DEFAULT, NULL); in smb_net_txl_constructor()188 txl->tl_active = B_FALSE; in smb_net_txl_constructor()189 txl->tl_magic = SMB_TXLST_MAGIC; in smb_net_txl_constructor()198 smb_net_txl_destructor(smb_txlst_t *txl) in smb_net_txl_destructor() argument200 ASSERT(txl->tl_magic == SMB_TXLST_MAGIC); in smb_net_txl_destructor()202 txl->tl_magic = 0; in smb_net_txl_destructor()203 cv_destroy(&txl->tl_wait_cv); in smb_net_txl_destructor()[all …]