diff options
author | robert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 19:56:35 +0000 |
---|---|---|
committer | robert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 19:56:35 +0000 |
commit | e60c023a07150052e4aefe6fd95ce5d09fc8767a (patch) | |
tree | 94577597f228dd8dce7e5aed8d0f98c3fe2487b8 /content/app | |
parent | 10d7c0e4a5e5e15c0574b9ac4a94a93605c733bd (diff) | |
download | chromium_src-e60c023a07150052e4aefe6fd95ce5d09fc8767a.zip chromium_src-e60c023a07150052e4aefe6fd95ce5d09fc8767a.tar.gz chromium_src-e60c023a07150052e4aefe6fd95ce5d09fc8767a.tar.bz2 |
share all the needed linux code with OpenBSD in chrome and content
disabled code for OpenBSD:
- AdjustRendererOOMScore()
- SECCOMP_SANDBOX
BUG=
TEST=compile
Review URL: http://codereview.chromium.org/8341052
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109679 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/app')
-rw-r--r-- | content/app/content_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/app/content_main.cc b/content/app/content_main.cc index 7e670c0..5720b49 100644 --- a/content/app/content_main.cc +++ b/content/app/content_main.cc @@ -315,7 +315,7 @@ int ContentMain(int argc, base::GlobalDescriptors* g_fds = base::GlobalDescriptors::GetInstance(); g_fds->Set(kPrimaryIPCChannel, kPrimaryIPCChannel + base::GlobalDescriptors::kBaseDescriptor); -#if defined(OS_LINUX) +#if defined(OS_LINUX) || defined(OS_OPENBSD) g_fds->Set(kCrashDumpSignal, kCrashDumpSignal + base::GlobalDescriptors::kBaseDescriptor); #endif |