Skip to content

Commit 4fe3fb2

Browse files
committed
#22 Renamed struct wsrep to struct wsrep_st
Fixed abort_certification() description to refer to certify() instead of pre_commit()
1 parent 955da1c commit 4fe3fb2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

wsrep_api.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -627,11 +627,11 @@ typedef struct wsrep_po_handle { void* opaque; } wsrep_po_handle_t;
627627
static const wsrep_po_handle_t WSREP_PO_INITIALIZER = { NULL };
628628

629629

630-
typedef struct wsrep wsrep_t;
630+
typedef struct wsrep_st wsrep_t;
631631
/*!
632632
* wsrep interface for dynamically loadable libraries
633633
*/
634-
struct wsrep {
634+
struct wsrep_st {
635635

636636
const char *version; //!< interface version string
637637

@@ -837,10 +837,10 @@ struct wsrep {
837837
void* trx_ctx);
838838

839839
/*!
840-
* @brief Abort pre_commit() call of another thread.
840+
* @brief Abort certify() call of another thread.
841841
*
842842
* It is possible, that some high-priority transaction needs to abort
843-
* another transaction which is in pre_commit() call waiting for resources.
843+
* another transaction which is in certify() call waiting for resources.
844844
*
845845
* The kill routine checks that abort is not attmpted against a transaction
846846
* which is front of the caller (in total order).

0 commit comments

Comments
 (0)