[llvm-commits] [llvm] r64094 - in /llvm/trunk/lib/System: Unix/Alarm.inc Unix/Host.inc Win32/Alarm.inc

Mikhail Glushenkov foldr at codedgers.com
Sun Feb 8 13:10:58 PST 2009


Author: foldr
Date: Sun Feb  8 15:10:57 2009
New Revision: 64094

URL: http://llvm.org/viewvc/llvm-project?rev=64094&view=rev
Log:
Add Emacs hints to Alarm.inc.

Also removes some trailing whitespace and fixes one 80-column violation.

Modified:
    llvm/trunk/lib/System/Unix/Alarm.inc
    llvm/trunk/lib/System/Unix/Host.inc
    llvm/trunk/lib/System/Win32/Alarm.inc

Modified: llvm/trunk/lib/System/Unix/Alarm.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Unix/Alarm.inc?rev=64094&r1=64093&r2=64094&view=diff

==============================================================================
--- llvm/trunk/lib/System/Unix/Alarm.inc (original)
+++ llvm/trunk/lib/System/Unix/Alarm.inc Sun Feb  8 15:10:57 2009
@@ -1,4 +1,4 @@
-//===-- Alarm.inc - Implement Unix Alarm Support --------------------------===//
+//===-- Alarm.inc - Implement Unix Alarm Support ----------------*- C++ -*-===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -20,11 +20,11 @@
 /// user presses CTRL-C.
 static volatile bool AlarmCancelled = false;
 
-/// AlarmTriggered - This flag is set by the SIGALRM signal handler if the 
+/// AlarmTriggered - This flag is set by the SIGALRM signal handler if the
 /// alarm was triggered.
 static volatile bool AlarmTriggered = false;
 
-/// NestedSOI - Sanity check.  Alarms cannot be nested or run in parallel.  
+/// NestedSOI - Sanity check.  Alarms cannot be nested or run in parallel.
 /// This ensures that they never do.
 static bool NestedSOI = false;
 

Modified: llvm/trunk/lib/System/Unix/Host.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Unix/Host.inc?rev=64094&r1=64093&r2=64094&view=diff

==============================================================================
--- llvm/trunk/lib/System/Unix/Host.inc (original)
+++ llvm/trunk/lib/System/Unix/Host.inc Sun Feb  8 15:10:57 2009
@@ -1,10 +1,10 @@
- //===- llvm/System/Unix/Host.inc --------------------------------*- C++ -*-===//
-// 
+ //===- llvm/System/Unix/Host.inc -------------------------------*- C++ -*-===//
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file is distributed under the University of Illinois Open Source
 // License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file implements the UNIX Host support.

Modified: llvm/trunk/lib/System/Win32/Alarm.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Win32/Alarm.inc?rev=64094&r1=64093&r2=64094&view=diff

==============================================================================
--- llvm/trunk/lib/System/Win32/Alarm.inc (original)
+++ llvm/trunk/lib/System/Win32/Alarm.inc Sun Feb  8 15:10:57 2009
@@ -1,4 +1,4 @@
-//===-- Alarm.inc - Implement Win32 Alarm Support -------------------------===//
+//===-- Alarm.inc - Implement Win32 Alarm Support ---------------*- C++ -*-===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -14,7 +14,7 @@
 #include <cassert>
 using namespace llvm;
 
-/// NestedSOI - Sanity check.  Alarms cannot be nested or run in parallel.  
+/// NestedSOI - Sanity check.  Alarms cannot be nested or run in parallel.
 /// This ensures that they never do.
 static bool NestedSOI = false;
 





More information about the llvm-commits mailing list