diff options
author | Enrico Granata <egranata@apple.com> | 2012-10-16 20:57:12 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-10-16 20:57:12 +0000 |
commit | cd4d24d5e9583dfe8839262df17088e38962fda1 (patch) | |
tree | af316a903d7e77de4769673431f8ddcaee17dba4 /lldb/scripts | |
parent | 981d4dfa0f4e7ed2232e48845a239683fea182a4 (diff) | |
download | bcm5719-llvm-cd4d24d5e9583dfe8839262df17088e38962fda1.tar.gz bcm5719-llvm-cd4d24d5e9583dfe8839262df17088e38962fda1.zip |
<rdar://problem/12446320> Fixing an issue with our Driver where setting an immediate output would not cause suppression of the final printout. This allows effective output redirection for Python commands
llvm-svn: 166058
Diffstat (limited to 'lldb/scripts')
-rw-r--r-- | lldb/scripts/Python/interface/SBCommandReturnObject.i | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/lldb/scripts/Python/interface/SBCommandReturnObject.i b/lldb/scripts/Python/interface/SBCommandReturnObject.i index 82c07ee434d..81e85ca8c21 100644 --- a/lldb/scripts/Python/interface/SBCommandReturnObject.i +++ b/lldb/scripts/Python/interface/SBCommandReturnObject.i @@ -36,14 +36,26 @@ public: GetError (); size_t - PutOutput (FILE *fh); - - size_t GetOutputSize (); size_t GetErrorSize (); + const char * + GetOutput (bool only_if_no_immediate); + + const char * + GetError (bool if_no_immediate); + + size_t + GetErrorSize (bool only_if_no_immediate); + + size_t + GetOutputSize (bool only_if_no_immediate); + + size_t + PutOutput (FILE *fh); + size_t PutError (FILE *fh); |