// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SANDBOX_LINUX_SECCOMP_BPF_SYSCALL_H__ #define SANDBOX_LINUX_SECCOMP_BPF_SYSCALL_H__ #include <signal.h> #include <stdint.h> #include "sandbox/linux/system_headers/linux_signal.h" #include "sandbox/sandbox_export.h" namespace sandbox { // This purely static class can be used to perform system calls with some // low-level control. class SANDBOX_EXPORT Syscall { … }; } // namespace sandbox #endif // SANDBOX_LINUX_SECCOMP_BPF_SYSCALL_H__