LLVM API Documentation
00001 //===---- Watchdog.cpp - Implement Watchdog ---------------------*- 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 Watchdog class. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #include "llvm/Support/Watchdog.h" 00015 #include "llvm/Config/config.h" 00016 00017 // Include the platform-specific parts of this class. 00018 #ifdef LLVM_ON_UNIX 00019 #include "Unix/Watchdog.inc" 00020 #endif 00021 #ifdef LLVM_ON_WIN32 00022 #include "Windows/Watchdog.inc" 00023 #endif