blob: 9873e9dd0ea15cf6e9833acdb89f3cade968b435 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef SANDBOX_H__
#define SANDBOX_H__
extern "C" int SupportsSeccompSandbox(int proc_fd);
extern "C" void SeccompSandboxSetProcSelfMaps(int proc_self_maps);
extern "C" void StartSeccompSandbox();
#endif // SANDBOX_H__
|