1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

Using javadoc style for doc comments

This commit is contained in:
Teemu Ollakka
2018-06-16 15:23:14 +03:00
parent 47cb8e604c
commit ad0617c660
11 changed files with 180 additions and 181 deletions

View File

@ -200,18 +200,17 @@ namespace wsrep
}
// Methods to modify mock state
/*! Inject BF abort event into the provider.
/** Inject BF abort event into the provider.
*
* \param bf_seqno Aborter sequence number
* \param trx_id Trx id to be aborted
* \param[out] victim_seqno
* @param bf_seqno Aborter sequence number
* @param trx_id Trx id to be aborted
* @param[out] victim_seqno
*/
enum wsrep::provider::status
bf_abort(wsrep::seqno bf_seqno,
wsrep::transaction_id trx_id,
wsrep::seqno& victim_seqno)
{
// std::cerr << "bf_abort: " << trx_id << "\n";
bf_abort_map_.insert(std::make_pair(trx_id, bf_seqno));
if (bf_seqno.nil() == false)
{