1 --- content/browser/sandbox_host_linux.cc.orig 2022-02-07 13:39:41 UTC 2 +++ content/browser/sandbox_host_linux.cc 3 @@ -45,6 +45,7 @@ void SandboxHostLinux::Init() { 4 // Instead, it replies on a temporary socket provided by the caller. 5 PCHECK(0 == shutdown(browser_socket, SHUT_WR)) << "shutdown"; 6 7 +#if !defined(OS_BSD) 8 int pipefds[2]; 9 CHECK(0 == pipe(pipefds)); 10 const int child_lifeline_fd = pipefds[0]; 11 @@ -55,6 +56,7 @@ void SandboxHostLinux::Init() { 12 ipc_thread_ = std::make_unique<base::DelegateSimpleThread>( 13 ipc_handler_.get(), "sandbox_ipc_thread"); 14 ipc_thread_->Start(); 15 +#endif 16 } 17 18 } // namespace content 19