[Lldb-commits] [PATCH] Update for Linux->POSIX rename
Ed Maste
emaste at freebsd.org
Wed Jun 19 05:54:24 PDT 2013
Revision r147613 (2341d35) renamed this file with s/Linux/POSIX/, but
header guards and comments were not updated to match.
---
source/Plugins/Process/POSIX/ProcessPOSIXLog.h | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/source/Plugins/Process/POSIX/ProcessPOSIXLog.h b/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
index b2d824d..a1e2e37 100644
--- a/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
+++ b/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_
--
1.7.11.5
More information about the lldb-commits
mailing list