mtime 1.2.2
Loading...
Searching...
No Matches
mtime_eventList.h
1// Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved.
2//
3// SPDX-License-Identifier: BSD-3-Clause
4//
22#ifndef _MTIME_EVENTLIST_H
23#define _MTIME_EVENTLIST_H
24
25#include <stdbool.h>
26
27struct _eventGroup;
28struct _event;
29
30void deallocateEventsInGroup(struct _eventGroup *eg);
31
32bool addNewEventToGroup(struct _event *ev, struct _eventGroup *eg);
33
34bool removeEventWithNameFromGroup(char *nodeName, struct _eventGroup *eg);
35
39#endif
40
struct _event defines events. Events are set to be triggered at pre-specified intervals.
Definition mtime_eventHandling.h:75
struct _eventGroup defines an Event-group. Each event group has an associated list of events....
Definition mtime_eventHandling.h:46