diff options
author | Jason Molenda <jmolenda@apple.com> | 2012-02-22 02:18:59 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2012-02-22 02:18:59 +0000 |
commit | 42999a48f9cfce6f84c3a6f9b8f0a263130a0ce8 (patch) | |
tree | b6d20feb6a01c474249f6956fa301bc97bc3b64b /lldb/tools/debugserver/source/MacOSX/MachProcess.h | |
parent | a1bed4cd96141eb92e94acd56d02167ec007626e (diff) | |
download | bcm5719-llvm-42999a48f9cfce6f84c3a6f9b8f0a263130a0ce8.tar.gz bcm5719-llvm-42999a48f9cfce6f84c3a6f9b8f0a263130a0ce8.zip |
Change #ifdef markers around lockdown and SpringBoard
calls to dpeend on WITH_SPRINGBOARD and WITH_LOCKDOWN
instead of __arm__. Add an RNBSocket::useFD method.
llvm-svn: 151119
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/MachProcess.h')
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachProcess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachProcess.h b/lldb/tools/debugserver/source/MacOSX/MachProcess.h index d52735adba7..af9fb698bfb 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachProcess.h +++ b/lldb/tools/debugserver/source/MacOSX/MachProcess.h @@ -77,7 +77,7 @@ public: static const void * PrepareForAttach (const char *path, nub_launch_flavor_t launch_flavor, bool waitfor, DNBError &err_str); static void CleanupAfterAttach (const void *attach_token, bool success, DNBError &err_str); static nub_process_t CheckForProcess (const void *attach_token); -#if defined (__arm__) +#ifdef WITH_SPRINGBOARD pid_t SBLaunchForDebug (const char *app_bundle_path, char const *argv[], char const *envp[], bool no_stdio, DNBError &launch_err); static pid_t SBForkChildForPTraceDebugging (const char *path, char const *argv[], char const *envp[], bool no_stdio, MachProcess* process, DNBError &launch_err); #endif |