1/*
2 * Copyright 2009-2018, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _FBSD_COMPAT_SYS_PRIORITY_H_
6#define _FBSD_COMPAT_SYS_PRIORITY_H_
7
8#include <OS.h>
9
10
11#define PI_NET			(B_REAL_TIME_DISPLAY_PRIORITY - 9)
12#define	PI_SOFT			(B_REAL_TIME_DISPLAY_PRIORITY - 1)
13
14#define PRI_MIN_KERN	(64)
15#define PZERO			(PRI_MIN_KERN + 20)
16#define	PWAIT			(PRI_MIN_KERN + 28)
17
18
19#endif /* _FBSD_COMPAT_SYS_PRIORITY_H_ */
20