Lines Matching refs:tmgrp
119 #define LOCK_TXNTHREAD(tmgrp) \
120 if (F_ISSET(tmgrp, DB_THREAD)) \
121 (void)__db_mutex_lock((tmgrp)->mutexp, -1)
122 #define UNLOCK_TXNTHREAD(tmgrp) \
123 if (F_ISSET(tmgrp, DB_THREAD)) \
124 (void)__db_mutex_unlock((tmgrp)->mutexp, -1)
126 #define LOCK_TXNREGION(tmgrp) \
127 (void)__db_mutex_lock(&(tmgrp)->region->hdr.lock, (tmgrp)->reginfo.fd)
128 #define UNLOCK_TXNREGION(tmgrp) \
129 (void)__db_mutex_unlock(&(tmgrp)->region->hdr.lock, (tmgrp)->reginfo.fd)
132 #define TXN_PANIC_CHECK(tmgrp) { \
133 if ((tmgrp)->region->hdr.panic) \