diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-29 19:19:07 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-29 19:19:07 +0000 |
commit | 21087b0f7e394f6271c5a5960de016ab6c9883f8 (patch) | |
tree | 351b8251b9c64ca10e94d5c7ff80c01235f2dfdf /llvm | |
parent | a872cbe3bd65e0f6060788177a68996a50d1f97e (diff) | |
download | bcm5719-llvm-21087b0f7e394f6271c5a5960de016ab6c9883f8.tar.gz bcm5719-llvm-21087b0f7e394f6271c5a5960de016ab6c9883f8.zip |
Put the lib/System interface functions in llvm::sys namespace.
llvm-svn: 16083
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/System/Signals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/include/llvm/System/Signals.h b/llvm/include/llvm/System/Signals.h index 9f4c00a488d..7e80cb8daca 100644 --- a/llvm/include/llvm/System/Signals.h +++ b/llvm/include/llvm/System/Signals.h @@ -18,6 +18,7 @@ #include "llvm/System/Path.h" namespace llvm { +namespace sys { /// This function registers signal handlers to ensure that if a signal gets /// delivered that the named file is removed. @@ -35,6 +36,7 @@ namespace llvm { /// @brief Print a stack trace if a fatal signal occurs. void PrintStackTraceOnErrorSignal(); +} // End sys namespace } // End llvm namespace #endif |