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