diff options
Diffstat (limited to 'storage/xtradb/include/trx0roll.ic')
-rw-r--r-- | storage/xtradb/include/trx0roll.ic | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/storage/xtradb/include/trx0roll.ic b/storage/xtradb/include/trx0roll.ic index 513b8b44847..3460832b18c 100644 --- a/storage/xtradb/include/trx0roll.ic +++ b/storage/xtradb/include/trx0roll.ic @@ -16,21 +16,22 @@ Place, Suite 330, Boston, MA 02111-1307 USA *****************************************************************************/ -/****************************************************** +/**************************************************//** +@file include/trx0roll.ic Transaction rollback Created 3/26/1996 Heikki Tuuri *******************************************************/ -/*********************************************************************** -Returns pointer to nth element in an undo number array. */ +/*******************************************************************//** +Returns pointer to nth element in an undo number array. +@return pointer to the nth element */ UNIV_INLINE trx_undo_inf_t* trx_undo_arr_get_nth_info( /*======================*/ - /* out: pointer to the nth element */ - trx_undo_arr_t* arr, /* in: undo number array */ - ulint n) /* in: position */ + trx_undo_arr_t* arr, /*!< in: undo number array */ + ulint n) /*!< in: position */ { ut_ad(arr); ut_ad(n < arr->n_cells); |