File: ipc.h

package info (click to toggle)
linux 6.17.12-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,734,992 kB
  • sloc: ansic: 26,685,173; asm: 271,224; sh: 147,406; python: 75,980; makefile: 57,306; perl: 36,943; xml: 19,562; cpp: 5,899; yacc: 4,909; lex: 2,943; awk: 1,556; sed: 29; ruby: 25
file content (23 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * AppArmor security module
 *
 * This file contains AppArmor ipc mediation function definitions.
 *
 * Copyright (C) 1998-2008 Novell/SUSE
 * Copyright 2009-2017 Canonical Ltd.
 */

#ifndef __AA_IPC_H
#define __AA_IPC_H

#include <linux/sched.h>

#define SIGUNKNOWN 0
#define MAXMAPPED_SIG 35

int aa_may_signal(const struct cred *subj_cred, struct aa_label *sender,
		  const struct cred *target_cred, struct aa_label *target,
		  int sig);

#endif /* __AA_IPC_H */