1/******************************************************
2Percona XtraBackup: hot backup tool for InnoDB
3(c) 2009-2014 Percona LLC and/or its affiliates
4Originally Created 3/3/2009 Yasufumi Kinoshita
5Written by Alexey Kopytov, Aleksandr Kuzminsky, Stewart Smith, Vadim Tkachenko,
6Yasufumi Kinoshita, Ignacio Nin and Baron Schwartz.
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; version 2 of the License.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
20*******************************************************/
21
22#ifndef BACKUP_WSREP_H
23#define BACKUP_WSREP_H
24
25/***********************************************************************
26Store Galera checkpoint info in the 'xtrabackup_galera_info' file, if that
27information is present in the trx system header. Otherwise, do nothing. */
28void
29xb_write_galera_info(bool incremental_prepare);
30/*==================*/
31
32#endif
33