From b13cf98e6beb57c7ad6cc29ef6e331f22b9680a2 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 22 Dec 2005 03:23:46 +0000 Subject: 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 --- lib/System/Alarm.cpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lib/System/Alarm.cpp (limited to 'lib/System/Alarm.cpp') diff --git a/lib/System/Alarm.cpp b/lib/System/Alarm.cpp new file mode 100644 index 0000000000..d782b293e3 --- /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 + -- cgit v1.2.3-18-g5258