| 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 <fcntl.h> |
| 9 #include <netinet/in.h> | 9 #include <netinet/in.h> |
| 10 #include <sched.h> | 10 #include <sched.h> |
| 11 #include <signal.h> | 11 #include <signal.h> |
| 12 #include <stddef.h> | |
| 13 #include <string.h> | 12 #include <string.h> |
| 14 #include <sys/prctl.h> | 13 #include <sys/prctl.h> |
| 15 #include <sys/resource.h> | 14 #include <sys/resource.h> |
| 16 #include <sys/socket.h> | 15 #include <sys/socket.h> |
| 17 #include <sys/stat.h> | 16 #include <sys/stat.h> |
| 18 #include <sys/syscall.h> | 17 #include <sys/syscall.h> |
| 19 #include <sys/time.h> | 18 #include <sys/time.h> |
| 20 #include <sys/types.h> | 19 #include <sys/types.h> |
| 21 #include <sys/wait.h> | 20 #include <sys/wait.h> |
| 22 #include <time.h> | 21 #include <time.h> |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 int fds[2]; | 375 int fds[2]; |
| 377 PCHECK(socketpair(AF_UNIX, SOCK_STREAM, 0, fds) == 0); | 376 PCHECK(socketpair(AF_UNIX, SOCK_STREAM, 0, fds) == 0); |
| 378 int id; | 377 int id; |
| 379 setsockopt(fds[0], SOL_SOCKET, SO_DEBUG, &id, sizeof(id)); | 378 setsockopt(fds[0], SOL_SOCKET, SO_DEBUG, &id, sizeof(id)); |
| 380 } | 379 } |
| 381 #endif | 380 #endif |
| 382 | 381 |
| 383 } // namespace | 382 } // namespace |
| 384 | 383 |
| 385 } // namespace sandbox | 384 } // namespace sandbox |
| OLD | NEW |