[Lldb-commits] [lldb] r228660 - And make the globbing behavior available via the SB API
Enrico Granata
egranata at apple.com
Mon Feb 9 19:16:56 PST 2015
Author: enrico
Date: Mon Feb 9 21:16:55 2015
New Revision: 228660
URL: http://llvm.org/viewvc/llvm-project?rev=228660&view=rev
Log:
And make the globbing behavior available via the SB API
Modified:
lldb/trunk/include/lldb/API/SBLaunchInfo.h
lldb/trunk/scripts/Python/interface/SBLaunchInfo.i
lldb/trunk/source/API/SBLaunchInfo.cpp
Modified: lldb/trunk/include/lldb/API/SBLaunchInfo.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBLaunchInfo.h?rev=228660&r1=228659&r2=228660&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBLaunchInfo.h (original)
+++ lldb/trunk/include/lldb/API/SBLaunchInfo.h Mon Feb 9 21:16:55 2015
@@ -140,7 +140,13 @@ public:
void
SetShell (const char * path);
-
+
+ bool
+ GetGlobArguments ();
+
+ void
+ SetGlobArguments (bool glob);
+
uint32_t
GetResumeCount ();
Modified: lldb/trunk/scripts/Python/interface/SBLaunchInfo.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBLaunchInfo.i?rev=228660&r1=228659&r2=228660&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBLaunchInfo.i (original)
+++ lldb/trunk/scripts/Python/interface/SBLaunchInfo.i Mon Feb 9 21:16:55 2015
@@ -91,6 +91,12 @@ public:
void
SetShell (const char * path);
+
+ bool
+ GetGlobArguments ();
+
+ void
+ SetGlobArguments (bool glob);
uint32_t
GetResumeCount ();
Modified: lldb/trunk/source/API/SBLaunchInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBLaunchInfo.cpp?rev=228660&r1=228659&r2=228660&view=diff
==============================================================================
--- lldb/trunk/source/API/SBLaunchInfo.cpp (original)
+++ lldb/trunk/source/API/SBLaunchInfo.cpp Mon Feb 9 21:16:55 2015
@@ -217,6 +217,18 @@ SBLaunchInfo::SetShell (const char * pat
m_opaque_sp->SetShell (FileSpec(path, false));
}
+bool
+SBLaunchInfo::GetGlobArguments ()
+{
+ return m_opaque_sp->GetGlobArguments();
+}
+
+void
+SBLaunchInfo::SetGlobArguments (bool glob)
+{
+ m_opaque_sp->SetGlobArguments(glob);
+}
+
uint32_t
SBLaunchInfo::GetResumeCount ()
{
More information about the lldb-commits
mailing list