summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2013-06-24 14:51:39 +0000
committerEd Maste <emaste@freebsd.org>2013-06-24 14:51:39 +0000
commit69b76d5d6592fa0661236ce871c6f711d1b1ccf3 (patch)
tree88d0adc4e3645c8da216826271c42b8830aec00b /lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
parent5a11580205ecb4664e5d1891c8b5bfac504393f9 (diff)
downloadbcm5719-llvm-69b76d5d6592fa0661236ce871c6f711d1b1ccf3.tar.gz
bcm5719-llvm-69b76d5d6592fa0661236ce871c6f711d1b1ccf3.zip
Update for Linux->POSIX rename
Revision r147613 (2341d35) renamed this file with s/Linux/POSIX/, but header guards and comments were not updated to match. llvm-svn: 184741
Diffstat (limited to 'lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h')
-rw-r--r--lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h b/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
index b2d824d8256..a1e2e3747d2 100644
--- a/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
+++ b/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
@@ -1,4 +1,4 @@
-//===-- ProcessLinuxLog.h -----------------------------------------*- C++ -*-===//
+//===-- ProcessPOSIXLog.h -----------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef liblldb_ProcessLinuxLog_h_
-#define liblldb_ProcessLinuxLog_h_
+#ifndef liblldb_ProcessPOSIXLog_h_
+#define liblldb_ProcessPOSIXLog_h_
// C Includes
// C++ Includes
@@ -76,16 +76,16 @@ public:
// recursive functions. FIXME: not thread safe!
// Example:
// void NestingFunc() {
- // LogSP log (ProcessLinuxLog::GetLogIfAllCategoriesSet(POSIX_LOG_ALL));
+ // LogSP log (ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_ALL));
// if (log)
// {
- // ProcessLinuxLog::IncNestLevel();
- // if (ProcessLinuxLog::AtTopNestLevel())
+ // ProcessPOSIXLog::IncNestLevel();
+ // if (ProcessPOSIXLog::AtTopNestLevel())
// log->Print(msg);
// }
// NestingFunc();
// if (log)
- // ProcessLinuxLog::DecNestLevel();
+ // ProcessPOSIXLog::DecNestLevel();
// }
static bool
@@ -108,4 +108,4 @@ public:
}
};
-#endif // liblldb_ProcessLinuxLog_h_
+#endif // liblldb_ProcessPOSIXLog_h_
OpenPOWER on IntegriCloud