diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-01-23 17:46:22 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-01-23 17:46:22 +0000 |
| commit | 6f907e69e9de7e59f94f664788cca86b96145648 (patch) | |
| tree | 62b20f933a5f01f992c56d6725c5cdf117fc0878 /lldb/source/API | |
| parent | 499897b463f48bdce9c3ea1b20e54fac903a166f (diff) | |
| download | bcm5719-llvm-6f907e69e9de7e59f94f664788cca86b96145648.tar.gz bcm5719-llvm-6f907e69e9de7e59f94f664788cca86b96145648.zip | |
Deprecated old forms of SBTarget::Launch. There is not just one and no
SWIG renaming done to work around deprecated APIs.
llvm-svn: 124075
Diffstat (limited to 'lldb/source/API')
| -rw-r--r-- | lldb/source/API/SBTarget.cpp | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp index f6c01cf0a87..13d227700bd 100644 --- a/lldb/source/API/SBTarget.cpp +++ b/lldb/source/API/SBTarget.cpp @@ -116,49 +116,6 @@ SBTarget::GetDebugger () const return debugger; } -SBProcess -SBTarget::LaunchProcess -( - char const **argv, - char const **envp, - const char *tty, - uint32_t launch_flags, - bool stop_at_entry -) -{ - LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); - - if (log) - log->Printf ("SBTarget(%p)::LaunchProcess (argv=%p, envp=%p, tty=\"%s\", launch_flags=%d, stop_at_entry=%i)", - m_opaque_sp.get(), argv, envp, tty, launch_flags, stop_at_entry); - - SBError sb_error; - SBProcess sb_process = Launch (argv, envp, tty, tty, tty, NULL, launch_flags, stop_at_entry, sb_error); - - log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API); - if (log) - { - log->Printf ("SBTarget(%p)::LaunchProcess (...) => SBProcess(%p)", - m_opaque_sp.get(), sb_process.get()); - } - - return sb_process; -} - - -SBProcess -SBTarget::Launch -( - char const **argv, - char const **envp, - const char *tty, - uint32_t launch_flags, - bool stop_at_entry, - SBError &error -) -{ - return Launch (argv, envp, tty, tty, tty, NULL, launch_flags, stop_at_entry, error); -} SBProcess SBTarget::Launch |

