diff options
author | Ashok Thirumurthi <ashok.thirumurthi@intel.com> | 2013-03-28 16:02:31 +0000 |
---|---|---|
committer | Ashok Thirumurthi <ashok.thirumurthi@intel.com> | 2013-03-28 16:02:31 +0000 |
commit | 01186359798e9a95b474c05b1e2239ab03b082c0 (patch) | |
tree | f9508c85747b88db8a68d7350fe025079ca5c732 /lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp | |
parent | c7b27081d9c43816da797f0e0e8e28d0daa041e2 (diff) | |
download | bcm5719-llvm-01186359798e9a95b474c05b1e2239ab03b082c0.tar.gz bcm5719-llvm-01186359798e9a95b474c05b1e2239ab03b082c0.zip |
Fix the Linux build issues introduced by r178191.
- All Linux logging channels now use a single global instance of lldb_private::Log, to handle the case of logging during process tear down.
- Also removed a single use of LogSP in FreeBSD and fixed a typo in a comment while reading through ProcessKDPLog.
Reviewed by Daniel Malea.
llvm-svn: 178242
Diffstat (limited to 'lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp index 53b08d53c24..a9f572c090b 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp @@ -20,7 +20,7 @@ using namespace lldb_private; // We want to avoid global constructors where code needs to be run so here we // control access to our static g_log_sp by hiding it in a singleton function -// that will construct the static g_lob_sp the first time this function is +// that will construct the static g_log_sp the first time this function is // called. static bool g_log_enabled = false; static Log * g_log = NULL; |