Statistics
| Branch: | Revision:

root / include / sysemu / seccomp.h @ dccfcd0e

History | View | Annotate | Download (525 Bytes)

1 2f668be7 Eduardo Otubo
/*
2 2f668be7 Eduardo Otubo
 * QEMU seccomp mode 2 support with libseccomp
3 2f668be7 Eduardo Otubo
 *
4 2f668be7 Eduardo Otubo
 * Copyright IBM, Corp. 2012
5 2f668be7 Eduardo Otubo
 *
6 2f668be7 Eduardo Otubo
 * Authors:
7 2f668be7 Eduardo Otubo
 *  Eduardo Otubo    <eotubo@br.ibm.com>
8 2f668be7 Eduardo Otubo
 *
9 2f668be7 Eduardo Otubo
 * This work is licensed under the terms of the GNU GPL, version 2.  See
10 2f668be7 Eduardo Otubo
 * the COPYING file in the top-level directory.
11 2f668be7 Eduardo Otubo
 *
12 2f668be7 Eduardo Otubo
 * Contributions after 2012-01-13 are licensed under the terms of the
13 2f668be7 Eduardo Otubo
 * GNU GPL, version 2 or (at your option) any later version.
14 2f668be7 Eduardo Otubo
 */
15 2f668be7 Eduardo Otubo
#ifndef QEMU_SECCOMP_H
16 2f668be7 Eduardo Otubo
#define QEMU_SECCOMP_H
17 2f668be7 Eduardo Otubo
18 2f668be7 Eduardo Otubo
#include <seccomp.h>
19 1de7afc9 Paolo Bonzini
#include "qemu/osdep.h"
20 2f668be7 Eduardo Otubo
21 2f668be7 Eduardo Otubo
int seccomp_start(void);
22 2f668be7 Eduardo Otubo
#endif