pacemaker
3.0.0-d8340737c4
Scalable High-Availability cluster resource manager
include
crm
common
primitive_internal.h
Go to the documentation of this file.
1
/*
2
* Copyright 2024 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__CRM_COMMON_PRIMITIVE_INTERNAL__H
11
#define PCMK__CRM_COMMON_PRIMITIVE_INTERNAL__H
12
13
#include <stdio.h>
// NULL
14
#include <stdbool.h>
// bool, false
15
#include <
crm/common/scheduler_types.h
>
// pcmk_resource_t
16
#include <
crm/common/resources_internal.h
>
// pcmk__rsc_variant_primitive etc.
17
18
#ifdef __cplusplus
19
extern
"C"
{
20
#endif
21
30
static
inline
bool
31
pcmk__is_primitive(
const
pcmk_resource_t
*rsc)
32
{
33
if
(rsc == NULL) {
34
return
false
;
35
}
36
return
rsc->
priv
->
variant
==
pcmk__rsc_variant_primitive
;
37
}
38
39
#ifdef __cplusplus
40
}
41
#endif
42
43
#endif // PCMK__CRM_COMMON_PRIMITIVE_INTERNAL__H
scheduler_types.h
Type aliases needed to define scheduler objects.
resources_internal.h
pcmk__rsc_variant_primitive
Primitive resource.
Definition:
resources_internal.h:55
pcmk__resource_private::variant
enum pcmk__rsc_variant variant
Definition:
resources_internal.h:321
pcmk__resource::priv
pcmk__resource_private_t * priv
Definition:
resources.h:61
pcmk__resource
Definition:
resources.h:56
Generated on Wed Jan 8 2025 16:55:39 for pacemaker by
1.8.14