Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
stoat.h
1
// SPDX-FileCopyrightText: © 2019, 2023 Alexandros Theodotou <alex@zrythm.org>
2
// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4
#ifndef __UTILS_STOAT_H__
5
#define __UTILS_STOAT_H__
6
7
#if defined(__clang__)
8
# ifdef REALTIME
9
# undef REALTIME
10
# endif
11
# ifdef NONREALTIME
12
# undef NONREALTIME
13
# endif
14
# define REALTIME __attribute__ ((annotate ("realtime")))
15
# define NONREALTIME __attribute__ ((annotate ("nonrealtime")))
16
#else
17
# define REALTIME
18
# define NONREALTIME
19
#endif
20
21
#endif
utils
stoat.h
Generated by
1.11.0