/*1* AppArmor security module2*3* This file contains AppArmor ipc mediation function definitions.4*5* Copyright (C) 1998-2008 Novell/SUSE6* Copyright 2009-2010 Canonical Ltd.7*8* This program is free software; you can redistribute it and/or9* modify it under the terms of the GNU General Public License as10* published by the Free Software Foundation, version 2 of the11* License.12*/1314#ifndef __AA_IPC_H15#define __AA_IPC_H1617#include <linux/sched.h>1819struct aa_profile;2021int aa_may_ptrace(struct task_struct *tracer_task, struct aa_profile *tracer,22struct aa_profile *tracee, unsigned int mode);2324int aa_ptrace(struct task_struct *tracer, struct task_struct *tracee,25unsigned int mode);2627#endif /* __AA_IPC_H */282930