diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-09 01:09:05 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-09 01:09:05 +0000 |
commit | fccfcf2ff23d3d611ef537860ea6787a61aab063 (patch) | |
tree | a800a603770137f50bae1a09f08497b8bb0f958a /base/debug/debugger_posix.cc | |
parent | bf6b89ab1e5e3dfa25e3348c19b5e2deca119659 (diff) | |
download | chromium_src-fccfcf2ff23d3d611ef537860ea6787a61aab063.zip chromium_src-fccfcf2ff23d3d611ef537860ea6787a61aab063.tar.gz chromium_src-fccfcf2ff23d3d611ef537860ea6787a61aab063.tar.bz2 |
PPAPI/NaCl: Remove call of system() from NaCl build
The system calls used by system() aren't available in NaCl and cause a link error in the NaCl IPC proxy build.
BUG=116317
TEST=
R=brettw
Review URL: https://chromiumcodereview.appspot.com/10534078
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141338 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug/debugger_posix.cc')
-rw-r--r-- | base/debug/debugger_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/debug/debugger_posix.cc b/base/debug/debugger_posix.cc index c41aa17..0e0aacf 100644 --- a/base/debug/debugger_posix.cc +++ b/base/debug/debugger_posix.cc @@ -59,7 +59,7 @@ namespace base { namespace debug { bool SpawnDebuggerOnProcess(unsigned process_id) { -#if OS_ANDROID +#if OS_ANDROID || OS_NACL NOTIMPLEMENTED(); return false; #else |