aboutsummaryrefslogtreecommitdiff
path: root/inc/schedule.h
blob: 9151d4984e31ed693bc1fbd7217a001d534ec05b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT

#ifndef CALM_SCHEDULE_H
#define CALM_SCHEDULE_H

#include <term.h>

void schedule_initialize(void);
void schedule_sync_priorities(void);
void schedule_add(struct term *term);
void schedule_remove(struct term *term);
void schedule(void);
void schedule_destroy(void);

#endif