summaryrefslogtreecommitdiffstats
path: root/sandbox/linux/seccomp/syscall.h
diff options
context:
space:
mode:
authormseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-01 16:22:01 +0000
committermseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-01 16:22:01 +0000
commit808ea578e1597271a1a73de640e9957babb4f9ea (patch)
tree119f7e82f154f61f1cfee5504063223dd41a211d /sandbox/linux/seccomp/syscall.h
parent4253e8240d8c71588abebcc123d4e224c8a6a83a (diff)
downloadchromium_src-808ea578e1597271a1a73de640e9957babb4f9ea.zip
chromium_src-808ea578e1597271a1a73de640e9957babb4f9ea.tar.gz
chromium_src-808ea578e1597271a1a73de640e9957babb4f9ea.tar.bz2
Pull seccomp-sandbox in via DEPS rather than using an in-tree copy
This means changes to the sandbox won't have to be committed twice, to both trees. This is a retry of r57921, which was committed with git-svn and failed to remove the "seccomp" directory. This caused problems when trying to "svn checkout" to the same location, and the change was reverted. This time I will use SVN to commit the change. BUG=none TEST=smoke test of running chromium with --enable-seccomp-sandbox Review URL: http://codereview.chromium.org/3225010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58184 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/linux/seccomp/syscall.h')
-rw-r--r--sandbox/linux/seccomp/syscall.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/sandbox/linux/seccomp/syscall.h b/sandbox/linux/seccomp/syscall.h
deleted file mode 100644
index 1315e12..0000000
--- a/sandbox/linux/seccomp/syscall.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef SYSCALL_H__
-#define SYSCALL_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void syscallWrapper() asm("playground$syscallWrapper")
-#if defined(__x86_64__)
- __attribute__((visibility("internal")))
-#endif
-;
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // SYSCALL_H__