mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Previously apparmor has only sent SIGKILL but there are cases where it can be useful to send a different signal. Allow the profile to optionally specify a different value. Signed-off-by: John Johansen <john.johansen@canonical.com>
19 lines
375 B
C
19 lines
375 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* AppArmor security module
|
|
*
|
|
* This file contains AppArmor ipc mediation function definitions.
|
|
*
|
|
* Copyright 2023 Canonical Ltd.
|
|
*/
|
|
|
|
#ifndef __AA_SIGNAL_H
|
|
#define __AA_SIGNAL_H
|
|
|
|
#define SIGUNKNOWN 0
|
|
#define MAXMAPPED_SIG 35
|
|
|
|
#define MAXMAPPED_SIGNAME (MAXMAPPED_SIG + 1)
|
|
#define SIGRT_BASE 128
|
|
|
|
#endif /* __AA_SIGNAL_H */
|