LLVM API Documentation
00001 //===- Win32/SysConfig.cpp - Win32 System Configuration ---------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file was developed by Jeff Cohen and is distributed under the 00006 // University of Illinois Open Source License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file defines some functions for managing system configuration on Win32. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 namespace llvm { 00015 00016 // Some LLVM programs such as bugpoint produce core files as a normal part of 00017 // their operation. To prevent the disk from filling up, this configuration item 00018 // does what's necessary to prevent their generation. 00019 void sys::PreventCoreFiles() { 00020 // Windows doesn't do core files, so nothing to do. 00021 // Although... it might be nice to prevent the do-you-want-to-debug 00022 // dialog box from coming up. Or maybe not... 00023 } 00024 00025 } 00026 00027 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab