xref: /linux/security/apparmor/include/signal.h (revision 8b45c6c90af6702b2ad716e148b8bcd5231a8070)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * AppArmor security module
4  *
5  * This file contains AppArmor ipc mediation function definitions.
6  *
7  * Copyright 2023 Canonical Ltd.
8  */
9 
10 #ifndef __AA_SIGNAL_H
11 #define __AA_SIGNAL_H
12 
13 #define SIGUNKNOWN 0
14 #define MAXMAPPED_SIG 35
15 
16 #define MAXMAPPED_SIGNAME (MAXMAPPED_SIG + 1)
17 #define SIGRT_BASE 128
18 
19 #endif /* __AA_SIGNAL_H */
20