OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef SECCOMP2_SANDBOX_H__ |
| 6 #define SECCOMP2_SANDBOX_H__ |
| 7 |
| 8 // See sandbox_impl.h for detailed comments on this API |
| 9 extern "C" int SupportsSeccomp2Sandbox(int proc_fd); |
| 10 extern "C" void Seccomp2SandboxSetProcFd(int proc_fd); |
| 11 extern "C" void StartSeccomp2Sandbox(); |
| 12 |
| 13 #endif // SECCOMP2_SANDBOX_H__ |
OLD | NEW |