| 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 | #define	EXTERR_CAT_INOTIFY	5 |
| 20 | #define	EXTERR_CAT_GENIO	6 |
| 21 | #define	EXTERR_CAT_BRIDGE	7 |
| 22 | #define	EXTERR_CAT_SWAP		8 |
| 23 | #define	EXTERR_CAT_VFSSYSCALL	9 |
| 24 | |
| 25 | #endif |