diff options
author | Owen Anderson <resistor@mac.com> | 2009-06-18 16:54:52 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-06-18 16:54:52 +0000 |
commit | e3cd5ca7e79f4359e8a101c211fc9c117eb62347 (patch) | |
tree | 51faa634a98ed93719d73e57a71a157fa7fad1a9 /include | |
parent | 4e8a98519ebf75ed47456ea42706aaa57ecd2c27 (diff) | |
download | external_llvm-e3cd5ca7e79f4359e8a101c211fc9c117eb62347.zip external_llvm-e3cd5ca7e79f4359e8a101c211fc9c117eb62347.tar.gz external_llvm-e3cd5ca7e79f4359e8a101c211fc9c117eb62347.tar.bz2 |
Move Threading.[h|cpp] from Support to System.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73707 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/ManagedStatic.h | 2 | ||||
-rw-r--r-- | include/llvm/System/Threading.h (renamed from include/llvm/Support/Threading.h) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/ManagedStatic.h b/include/llvm/Support/ManagedStatic.h index 412e474..ee335d8 100644 --- a/include/llvm/Support/ManagedStatic.h +++ b/include/llvm/Support/ManagedStatic.h @@ -15,7 +15,7 @@ #define LLVM_SUPPORT_MANAGED_STATIC_H #include "llvm/System/Atomic.h" -#include "llvm/Support/Threading.h" +#include "llvm/System/Threading.h" namespace llvm { diff --git a/include/llvm/Support/Threading.h b/include/llvm/System/Threading.h index bac11a2..42d2f89 100644 --- a/include/llvm/Support/Threading.h +++ b/include/llvm/System/Threading.h @@ -1,4 +1,4 @@ -//===-- llvm/Support/Threading.h - Control multithreading mode --*- C++ -*-===// +//===-- llvm/System/Threading.h - Control multithreading mode --*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_THREADING_H -#define LLVM_SUPPORT_THREADING_H +#ifndef LLVM_SYSTEM_THREADING_H +#define LLVM_SYSTEM_THREADING_H namespace llvm { /// llvm_start_multithreaded - Allocate and initialize structures needed to |