pacemaker 2.1.8-2.1.8
Scalable High-Availability cluster resource manager
Loading...
Searching...
No Matches
services_internal.h
Go to the documentation of this file.
1/*
2 * Copyright 2010-2022 the Pacemaker project contributors
3 *
4 * The version control history for this file may have further details.
5 *
6 * This source code is licensed under the GNU Lesser General Public License
7 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8 */
9
10#ifndef PCMK__SERVICES_INTERNAL__H
11# define PCMK__SERVICES_INTERNAL__H
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
38 const char *standard,
39 const char *provider,
40 const char *agent,
41 const char *action,
42 guint interval_ms,
43 int timeout, GHashTable *params,
45
46const char *services__exit_reason(const svc_action_t *action);
49
50void services__set_result(svc_action_t *action, int agent_status,
51 enum pcmk_exec_status exec_status,
52 const char *exit_reason);
53
55 enum pcmk_exec_status exec_status,
56 const char *format, ...) G_GNUC_PRINTF(4, 5);
57
58# ifdef __cplusplus
59}
60# endif
61
62#endif /* PCMK__SERVICES_INTERNAL__H */
const char * name
Definition cib.c:26
uint64_t flags
Definition remote.c:3
unsigned int timeout
Definition pcmk_fence.c:32
const char * action
Definition pcmk_fence.c:30
pcmk_exec_status
Execution status.
Definition results.h:330
svc_action_flags
Definition services.h:101
char * services__grab_stdout(svc_action_t *action)
Definition services.c:1390
svc_action_t * services__create_resource_action(const char *name, const char *standard, const char *provider, const char *agent, const char *action, guint interval_ms, int timeout, GHashTable *params, enum svc_action_flags flags)
Create a new resource action.
Definition services.c:254
void services__format_result(svc_action_t *action, int agent_status, enum pcmk_exec_status exec_status, const char *format,...) G_GNUC_PRINTF(4
const char * services__exit_reason(const svc_action_t *action)
Definition services.c:1374
char * services__grab_stderr(svc_action_t *action)
Definition services.c:1409
void services__set_result(svc_action_t *action, int agent_status, enum pcmk_exec_status exec_status, const char *exit_reason)
Definition services.c:1269
Object for executing external actions.
Definition services.h:122