diff options
Diffstat (limited to 'llvm/lib/System/Unix/Alarm.inc')
-rw-r--r-- | llvm/lib/System/Unix/Alarm.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/System/Unix/Alarm.inc b/llvm/lib/System/Unix/Alarm.inc index 853fcf50365..7faa6afa9ad 100644 --- a/llvm/lib/System/Unix/Alarm.inc +++ b/llvm/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; |