summaryrefslogtreecommitdiff
path: root/sandbox/linux/bpf_dsl/policy.cc
blob: c20edc6da86254335226e794fb092b86d37b579c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2014 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.

#include "sandbox/linux/bpf_dsl/policy.h"

#include <errno.h>

#include "sandbox/linux/bpf_dsl/bpf_dsl.h"

namespace sandbox {
namespace bpf_dsl {

ResultExpr Policy::InvalidSyscall() const {
  return Error(ENOSYS);
}

}  // namespace bpf_dsl
}  // namespace sandbox