projects
/
platform
/
core
/
dotnet
/
diagnostics.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1b1baf
)
Fix linux-arm64 libsosplugin.so not loading
author
Mike McLaughlin
<mikem@microsoft.com>
Mon, 23 Sep 2024 21:14:01 +0000
(14:14 -0700)
committer
Mike McLaughlin
<mikem@microsoft.com>
Mon, 23 Sep 2024 21:14:01 +0000
(14:14 -0700)
src/SOS/lldbplugin/sosplugin.cpp
patch
|
blob
|
history
diff --git
a/src/SOS/lldbplugin/sosplugin.cpp
b/src/SOS/lldbplugin/sosplugin.cpp
index f4ef26e1c9ea687e0314ce045b92e0dc4a66b5b7..2f13c3785a549a19783e997b8412e43b82dd59db 100644
(file)
--- a/
src/SOS/lldbplugin/sosplugin.cpp
+++ b/
src/SOS/lldbplugin/sosplugin.cpp
@@
-7,6
+7,11
@@
namespace lldb {
bool PluginInitialize (lldb::SBDebugger debugger);
}
+#if defined(HOST_ARM64)
+// Flag to check if atomics feature is available on the machine
+bool g_arm64_atomics_present = false;
+#endif
+
LLDBServices* g_services = nullptr;
bool lldb::PluginInitialize(lldb::SBDebugger debugger)