API Reference Manual 1.51.0
Loading...
Searching...
No Matches
common.h
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2025 Nokia
3 */
4
7#ifndef COMMON_H_
8#define COMMON_H_
9
10#define CRIT_PRIO 101
11#define HIGH_PRIO (CRIT_PRIO + 1)
12#define MED_PRIO (HIGH_PRIO + 1)
13#define LOW_PRIO (MED_PRIO + 1)
14
15#endif