| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "sandbox/linux/seccomp-bpf-helpers/baseline_policy.h" | 5 #include "sandbox/linux/seccomp-bpf-helpers/baseline_policy.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <fcntl.h> |
| 8 #include <linux/futex.h> | 9 #include <linux/futex.h> |
| 9 #include <sched.h> | 10 #include <sched.h> |
| 10 #include <signal.h> | 11 #include <signal.h> |
| 11 #include <string.h> | 12 #include <string.h> |
| 12 #include <sys/prctl.h> | 13 #include <sys/prctl.h> |
| 13 #include <sys/resource.h> | 14 #include <sys/resource.h> |
| 14 #include <sys/socket.h> | 15 #include <sys/socket.h> |
| 15 #include <sys/stat.h> | 16 #include <sys/stat.h> |
| 16 #include <sys/syscall.h> | 17 #include <sys/syscall.h> |
| 17 #include <sys/time.h> | 18 #include <sys/time.h> |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 ClockGettimeWithDisallowedClockCrashes, | 342 ClockGettimeWithDisallowedClockCrashes, |
| 342 DEATH_SEGV_MESSAGE(sandbox::GetErrorMessageContentForTests()), | 343 DEATH_SEGV_MESSAGE(sandbox::GetErrorMessageContentForTests()), |
| 343 BaselinePolicy) { | 344 BaselinePolicy) { |
| 344 struct timespec ts; | 345 struct timespec ts; |
| 345 clock_gettime(CLOCK_MONOTONIC_RAW, &ts); | 346 clock_gettime(CLOCK_MONOTONIC_RAW, &ts); |
| 346 } | 347 } |
| 347 | 348 |
| 348 } // namespace | 349 } // namespace |
| 349 | 350 |
| 350 } // namespace sandbox | 351 } // namespace sandbox |
| OLD | NEW |