aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Unix/Alarm.inc
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-02-08 21:10:57 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-02-08 21:10:57 +0000
commit24abe7245c76bf5302405e9d62dc8cb632c68d79 (patch)
tree2b512fd45d5455570ef4c9d65f44658255b38eb9 /lib/System/Unix/Alarm.inc
parent9f34dc64052361633b464bdbdc0737b3974b810c (diff)
downloadexternal_llvm-24abe7245c76bf5302405e9d62dc8cb632c68d79.zip
external_llvm-24abe7245c76bf5302405e9d62dc8cb632c68d79.tar.gz
external_llvm-24abe7245c76bf5302405e9d62dc8cb632c68d79.tar.bz2
Add Emacs hints to Alarm.inc.
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
Diffstat (limited to 'lib/System/Unix/Alarm.inc')
-rw-r--r--lib/System/Unix/Alarm.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/System/Unix/Alarm.inc b/lib/System/Unix/Alarm.inc
index 853fcf5..7faa6af 100644
--- a/lib/System/Unix/Alarm.inc
+++ b/lib/System/Unix/Alarm.inc
@@ -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;