blob: be23bf62faf20fa9f16ca4a5753818095b8696da [file] [log] [blame]
Reid Spencerb13cf982005-12-22 03:23:46 +00001//===-- Alarm.inc - Implement Win32 Alarm Support -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencerb13cf982005-12-22 03:23:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Win32 Alarm support.
11//
12//===----------------------------------------------------------------------===//
13
14#include <cassert>
15using namespace llvm;
16
17/// NestedSOI - Sanity check. Alarms cannot be nested or run in parallel.
18/// This ensures that they never do.
19static bool NestedSOI = false;
20
21void sys::SetupAlarm(unsigned seconds) {
22 assert(!NestedSOI && "sys::SetupAlarm calls cannot be nested!");
23 NestedSOI = true;
24 // FIXME: Implement for Win32
25}
26
27void sys::TerminateAlarm() {
28 assert(NestedSOI && "sys::TerminateAlarm called without sys::SetupAlarm!");
29 // FIXME: Implement for Win32
30 NestedSOI = false;
31}
32
33int sys::AlarmStatus() {
34 // FIXME: Implement for Win32
35 return 0;
36}