[Lldb-commits] [PATCH] D124872: [lldb] Add a function to check if lldb is running in an interactive session
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue May 3 13:43:26 PDT 2022
JDevlieghere updated this revision to Diff 426822.
JDevlieghere added a comment.
IsInteractiveSession -> IsInteractiveGraphicSession
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124872/new/
https://reviews.llvm.org/D124872
Files:
lldb/include/lldb/Host/Host.h
lldb/source/Host/common/Host.cpp
lldb/source/Host/macosx/objcxx/Host.mm
Index: lldb/source/Host/macosx/objcxx/Host.mm
===================================================================
--- lldb/source/Host/macosx/objcxx/Host.mm
+++ lldb/source/Host/macosx/objcxx/Host.mm
@@ -32,6 +32,8 @@
#define LauncherXPCServiceErrorTypeKey "errorType"
#define LauncherXPCServiceCodeTypeKey "errorCode"
+#include <bsm/audit.h>
+#include <bsm/audit_session.h>
#endif
#include "llvm/Support/Host.h"
@@ -406,6 +408,16 @@
#endif // TARGET_OS_OSX
}
+bool Host::IsInteractiveGraphicSession() {
+#if !TARGET_OS_OSX
+ return false;
+#else
+ auditinfo_addr_t info;
+ getaudit_addr(&info, sizeof(info));
+ return info.ai_flags & AU_SESSION_FLAG_HAS_GRAPHIC_ACCESS;
+#endif
+}
+
Environment Host::GetEnvironment() { return Environment(*_NSGetEnviron()); }
static bool GetMacOSXProcessCPUType(ProcessInstanceInfo &process_info) {
Index: lldb/source/Host/common/Host.cpp
===================================================================
--- lldb/source/Host/common/Host.cpp
+++ lldb/source/Host/common/Host.cpp
@@ -575,6 +575,7 @@
return false;
}
+bool Host::IsInteractiveGraphicSession() { return false; }
#endif
std::unique_ptr<Connection> Host::CreateDefaultConnection(llvm::StringRef url) {
Index: lldb/include/lldb/Host/Host.h
===================================================================
--- lldb/include/lldb/Host/Host.h
+++ lldb/include/lldb/Host/Host.h
@@ -242,6 +242,8 @@
static bool OpenFileInExternalEditor(const FileSpec &file_spec,
uint32_t line_no);
+ static bool IsInteractiveGraphicSession();
+
static Environment GetEnvironment();
static std::unique_ptr<Connection>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124872.426822.patch
Type: text/x-patch
Size: 1679 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220503/98fd7103/attachment.bin>
More information about the lldb-commits
mailing list