diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:53:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:53:20 +0000 |
commit | e5a812082ae033afb1eed82c0f2df3d0f6bdc93f (patch) | |
tree | a6716c9275b4b413f6c9194798b34b91affb3cc7 /daemons/controld/pacemaker-controld.h | |
parent | Initial commit. (diff) | |
download | pacemaker-e5a812082ae033afb1eed82c0f2df3d0f6bdc93f.tar.xz pacemaker-e5a812082ae033afb1eed82c0f2df3d0f6bdc93f.zip |
Adding upstream version 2.1.6.upstream/2.1.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'daemons/controld/pacemaker-controld.h')
-rw-r--r-- | daemons/controld/pacemaker-controld.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/daemons/controld/pacemaker-controld.h b/daemons/controld/pacemaker-controld.h new file mode 100644 index 0000000..1484a00 --- /dev/null +++ b/daemons/controld/pacemaker-controld.h @@ -0,0 +1,39 @@ +/* + * Copyright 2004-2023 the Pacemaker project contributors + * + * The version control history for this file may have further details. + * + * This source code is licensed under the GNU Lesser General Public License + * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY. + */ + +#ifndef CRMD__H +# define CRMD__H + +#include <controld_alerts.h> +#include <controld_callbacks.h> +#include <controld_cib.h> +#include <controld_fencing.h> +#include <controld_fsa.h> +#include <controld_globals.h> +#include <controld_timers.h> +#include <controld_lrm.h> +#include <controld_membership.h> +#include <controld_messages.h> +#include <controld_metadata.h> +#include <controld_throttle.h> +#include <controld_transition.h> +#include <controld_utils.h> + +# define controld_trigger_config() \ + controld_trigger_config_as(__func__, __LINE__) + +void crmd_metadata(void); +void controld_trigger_config_as(const char *fn, int line); +void controld_election_init(const char *uname); +void controld_configure_election(GHashTable *options); +void controld_remove_voter(const char *uname); +void controld_election_fini(void); +void controld_stop_current_election_timeout(void); + +#endif |