xref: /freebsd/sys/sys/exterr_cat.h (revision f9c9122d5ab9b106ddc6897454350b31de838631)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2025 The FreeBSD Foundation
5  * All rights reserved.
6  *
7  * This software were developed by Konstantin Belousov <kib@FreeBSD.org>
8  * under sponsorship from the FreeBSD Foundation.
9  */
10 
11 #ifndef _SYS_EXTERR_CAT_H_
12 #define	_SYS_EXTERR_CAT_H_
13 
14 #define	EXTERR_CAT_MMAP		1
15 #define	EXTERR_CAT_FILEDESC	2
16 #define	EXTERR_KTRACE		3	/* To allow inclusion of this
17 					   file into kern_ktrace.c */
18 #define	EXTERR_CAT_FUSE		4
19 
20 #endif
21 
22