/* * Fetch transaction-specific data. */ _CALLCONV void * stm_get_specific(int key) { TX_GET; return int_stm_get_specific(tx, key); }
/* * Fetch transaction-specific data from a specific transaction. */ _CALLCONV void * stm_get_specific_tx(stm_tx_t *tx, int key) { return int_stm_get_specific(tx, key); }
/* * Fetch transaction-specific data. */ _CALLCONV void * stm_get_specific(int key) { return int_stm_get_specific(key); }