LLVM API Documentation

Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

Alarm.cpp

Go to the documentation of this file.
00001 //===- Alarm.cpp - Alarm Generation Support ---------------------*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 // This file implements the Alarm functionality 
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #include "llvm/System/Alarm.h"
00015 #include "llvm/Config/config.h"
00016 
00017 namespace llvm {
00018 using namespace sys;
00019 
00020 //===----------------------------------------------------------------------===//
00021 //=== WARNING: Implementation here must contain only TRULY operating system
00022 //===          independent code.
00023 //===----------------------------------------------------------------------===//
00024 
00025 }
00026 
00027 // Include the platform-specific parts of this class.
00028 #ifdef LLVM_ON_UNIX
00029 #include "Unix/Alarm.inc"
00030 #endif
00031 #ifdef LLVM_ON_WIN32
00032 #include "Win32/Alarm.inc"
00033 #endif



This web site is hosted by the Computer Science Department at the University of Illinois at Urbana-Champaign.