Add Emacs hints to Alarm.inc.
authorMikhail Glushenkov <foldr@codedgers.com>
Sun, 8 Feb 2009 21:10:57 +0000 (21:10 +0000)
committerMikhail Glushenkov <foldr@codedgers.com>
Sun, 8 Feb 2009 21:10:57 +0000 (21:10 +0000)
Also removes some trailing whitespace and fixes one 80-column violation.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64094 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Unix/Alarm.inc
lib/System/Unix/Host.inc
lib/System/Win32/Alarm.inc

index 853fcf5036581f0f421d6848846d2d61a32ee415..7faa6afa9ad2d693edd26e83fccd98b8a3b9aef7 100644 (file)
@@ -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 @@ using namespace llvm;
 /// 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;
 
index 205ce2362c79bf4a2d619238a5c34e30e2feb987..1bd6da5632b79b91362f0ca1ed19ae42fb0aa164 100644 (file)
@@ -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.
index be23bf62faf20fa9f16ca4a5753818095b8696da..2f1a2808f98c72a93799b462c3937e4c1eccfbd2 100644 (file)
@@ -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;