File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -855,9 +855,11 @@ struct wsrep_ {
855
855
*
856
856
* @param wsrep provider handle
857
857
* @param state_id state ID
858
+ * @param rcode 0 or negative error code of the operation.
858
859
*/
859
860
wsrep_status_t (* sst_sent )(wsrep_t * wsrep ,
860
- const wsrep_gtid_t * state_id );
861
+ const wsrep_gtid_t * state_id ,
862
+ int rcode );
861
863
862
864
/*!
863
865
* @brief Signals to wsrep provider that new state snapshot has been received.
Original file line number Diff line number Diff line change @@ -220,7 +220,8 @@ static wsrep_status_t dummy_preordered(
220
220
221
221
static wsrep_status_t dummy_sst_sent (
222
222
wsrep_t * w ,
223
- const wsrep_gtid_t * state_id __attribute__((unused )))
223
+ const wsrep_gtid_t * state_id __attribute__((unused )),
224
+ const int rcode __attribute__((unused )))
224
225
{
225
226
WSREP_DBUG_ENTER (w );
226
227
return WSREP_OK ;
You can’t perform that action at this time.
0 commit comments