diff options
Diffstat (limited to 'include/llvm/Support/Process.h')
-rw-r--r-- | include/llvm/Support/Process.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/Support/Process.h b/include/llvm/Support/Process.h index cfdd06c62f33e..06fd0af10aa49 100644 --- a/include/llvm/Support/Process.h +++ b/include/llvm/Support/Process.h @@ -25,7 +25,6 @@ #ifndef LLVM_SUPPORT_PROCESS_H #define LLVM_SUPPORT_PROCESS_H -#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/Optional.h" #include "llvm/Config/llvm-config.h" #include "llvm/Support/Allocator.h" @@ -34,6 +33,7 @@ #include <system_error> namespace llvm { +template <typename T> class ArrayRef; class StringRef; namespace sys { @@ -69,6 +69,9 @@ public: /// @brief Prevent core file generation. static void PreventCoreFiles(); + /// \brief true if PreventCoreFiles has been called, false otherwise. + static bool AreCoreFilesPrevented(); + // This function returns the environment variable \arg name's value as a UTF-8 // string. \arg Name is assumed to be in UTF-8 encoding too. static Optional<std::string> GetEnv(StringRef name); |