aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Alarm.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-12-22 03:23:46 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-12-22 03:23:46 +0000
commitb13cf98e6beb57c7ad6cc29ef6e331f22b9680a2 (patch)
treec07194fa435f06730cd457c650455ff5ca203016 /lib/System/Alarm.cpp
parent3a217f3e53a6d3f942583f843df5bade961cdfb1 (diff)
downloadexternal_llvm-b13cf98e6beb57c7ad6cc29ef6e331f22b9680a2.zip
external_llvm-b13cf98e6beb57c7ad6cc29ef6e331f22b9680a2.tar.gz
external_llvm-b13cf98e6beb57c7ad6cc29ef6e331f22b9680a2.tar.bz2
Implement a generic polled Alarm function. This merely removes the system
dependent portion of the lib/Support/SlowOperationTimer code into the lib/System implementation where it can be ported to different platforms. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Alarm.cpp')
-rw-r--r--lib/System/Alarm.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/System/Alarm.cpp b/lib/System/Alarm.cpp
new file mode 100644
index 0000000..d782b29
--- /dev/null
+++ b/lib/System/Alarm.cpp
@@ -0,0 +1,34 @@
+//===- Alarm.cpp - Alarm Generation Support ---------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the Reid Spencer and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file implements the Alarm functionality
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/System/Alarm.h"
+#include "llvm/Config/config.h"
+
+namespace llvm {
+using namespace sys;
+
+//===----------------------------------------------------------------------===//
+//=== WARNING: Implementation here must contain only TRULY operating system
+//=== independent code.
+//===----------------------------------------------------------------------===//
+
+}
+
+// Include the platform-specific parts of this class.
+#ifdef LLVM_ON_UNIX
+#include "Unix/Alarm.inc"
+#endif
+#ifdef LLVM_ON_WIN32
+#include "Win32/Alarm.inc"
+#endif
+