[Lldb-commits] [lldb] r184741 - Update for Linux->POSIX rename

Ed Maste emaste at freebsd.org
Mon Jun 24 07:51:40 PDT 2013


Author: emaste
Date: Mon Jun 24 09:51:39 2013
New Revision: 184741

URL: http://llvm.org/viewvc/llvm-project?rev=184741&view=rev
Log:
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.

Modified:
    lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIXLog.h

Modified: lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIXLog.h?rev=184741&r1=184740&r2=184741&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIXLog.h (original)
+++ lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIXLog.h Mon Jun 24 09:51:39 2013
@@ -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_





More information about the lldb-commits mailing list