summaryrefslogtreecommitdiffstats
path: root/base/process_util.h
diff options
context:
space:
mode:
authorfischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-28 19:06:46 +0000
committerfischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-28 19:06:46 +0000
commit2b64f7b0cb8c3a1cb9cc8b618a4c9ddaf2af859a (patch)
treeade68b35681035ecf8afe89618b18af1797cc0b8 /base/process_util.h
parent97762c74a812d0ed2028fa9397746fe17597ef47 (diff)
downloadchromium_src-2b64f7b0cb8c3a1cb9cc8b618a4c9ddaf2af859a.zip
chromium_src-2b64f7b0cb8c3a1cb9cc8b618a4c9ddaf2af859a.tar.gz
chromium_src-2b64f7b0cb8c3a1cb9cc8b618a4c9ddaf2af859a.tar.bz2
Revert 90805 - I am submitting this with LGTMs from agl@ and evanm@. I'm marking this as TBR=jam@ because he is on vacation. He previously LGTMed the reverted CL (link below) and there are not substantive changes since then.
Modify the Chrome Linux zygote to support a nacl_helper executable, facilitating a special address-space layout as required by NaCl on ARM and ATOM CPUs. In passing, simplify some shared elements of launching NaCl modules in Chrome. This is an update to a previously reverted CL. Please see http://codereview.chromium.org/6995121 for the earlier reviews. Patching nacl_helper CL into fresh branch. BUG=nativeclient:480 TEST=nativeclient in-browser tests TBR=jam@chromium.org TBR=bradchen@google.com Review URL: http://codereview.chromium.org/7230057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util.h')
-rw-r--r--base/process_util.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/base/process_util.h b/base/process_util.h
index 9f66669..3e758d4 100644
--- a/base/process_util.h
+++ b/base/process_util.h
@@ -286,15 +286,6 @@ BASE_API bool LaunchAppInNewProcessGroup(
bool wait,
ProcessHandle* process_handle);
-#if defined(OS_LINUX)
-// Similar to LaunchApp variants above except uses clone(.. clone_flags ..)
-// rather than fork(). This is useful for work inside the setuid sandbox.
-BASE_API bool LaunchAppWithClone(const std::vector<std::string>& argv,
- const file_handle_mapping_vector& fds_to_remap,
- bool wait, ProcessHandle* process_handle,
- int clone_flags);
-#endif
-
// AlterEnvironment returns a modified environment vector, constructed from the
// given environment and the list of changes given in |changes|. Each key in
// the environment is matched against the first element of the pairs. In the