blob: 6d45ce8b18a1e9a1338c0b580909a603ee416649 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/* SPDX-License-Identifier: GPL-2.0-or-later */
2/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * Copyright (C) 2005 Oracle. All rights reserved.
6 */
7
8#ifndef O2CLUSTER_QUORUM_H
9#define O2CLUSTER_QUORUM_H
10
11void o2quo_init(void);
12void o2quo_exit(void);
13
14void o2quo_hb_up(u8 node);
15void o2quo_hb_down(u8 node);
16void o2quo_hb_still_up(u8 node);
17void o2quo_conn_up(u8 node);
18void o2quo_conn_err(u8 node);
19void o2quo_disk_timeout(void);
20
21#endif /* O2CLUSTER_QUORUM_H */