mirror of https://gitee.com/openkylin/qemu.git
15 lines
248 B
C
15 lines
248 B
C
|
/*
|
||
|
* Seccomp sandboxing for virtiofsd
|
||
|
*
|
||
|
* Copyright (C) 2019 Red Hat, Inc.
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#ifndef VIRTIOFSD_SECCOMP_H
|
||
|
#define VIRTIOFSD_SECCOMP_H
|
||
|
|
||
|
void setup_seccomp(void);
|
||
|
|
||
|
#endif /* VIRTIOFSD_SECCOMP_H */
|