pacemaker 3.0.1-16e74fc4da
Scalable High-Availability cluster resource manager
Loading...
Searching...
No Matches
action_relation.c
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#include <crm_internal.h>
11
12#include <stdlib.h> // free()
13#include <glib.h> // gpointer
14
16
23void
24pcmk__free_action_relation(gpointer user_data)
25{
26 pcmk__action_relation_t *relation = user_data;
27
28 free(relation->task1);
29 free(relation->task2);
30 free(relation);
31}
void pcmk__free_action_relation(gpointer user_data)
Scheduler API.