diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2019-08-07 10:57:25 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2019-08-07 10:57:25 +0000 |
| commit | 3d5360a4398bfa6878f94ca9ac55bc568692c765 (patch) | |
| tree | 8517d65dccdea329b5f6fa6eced147ed4c219371 /llvm/lib/Support/Unix | |
| parent | befde45a6f606429cadd1ea5d57679c1955ef2a8 (diff) | |
| download | bcm5719-llvm-3d5360a4398bfa6878f94ca9ac55bc568692c765.tar.gz bcm5719-llvm-3d5360a4398bfa6878f94ca9ac55bc568692c765.zip | |
Replace llvm::MutexGuard/UniqueLock with their standard equivalents
All supported platforms have <mutex> now, so we don't need our own
copies any longer. No functionality change intended.
llvm-svn: 368149
Diffstat (limited to 'llvm/lib/Support/Unix')
| -rw-r--r-- | llvm/lib/Support/Unix/Process.inc | 4 | ||||
| -rw-r--r-- | llvm/lib/Support/Unix/Signals.inc | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Support/Unix/Process.inc b/llvm/lib/Support/Unix/Process.inc index 4115ee39658..86101e47391 100644 --- a/llvm/lib/Support/Unix/Process.inc +++ b/llvm/lib/Support/Unix/Process.inc @@ -16,7 +16,7 @@ #include "llvm/Config/config.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/Mutex.h" -#include "llvm/Support/MutexGuard.h" +#include <mutex> #if HAVE_FCNTL_H #include <fcntl.h> #endif @@ -333,7 +333,7 @@ static ManagedStatic<sys::Mutex> TermColorMutex; static bool terminalHasColors(int fd) { #ifdef HAVE_TERMINFO // First, acquire a global lock because these C routines are thread hostile. - MutexGuard G(*TermColorMutex); + std::lock_guard<sys::Mutex> G(*TermColorMutex); int errret = 0; if (setupterm(nullptr, fd, &errret) != 0) diff --git a/llvm/lib/Support/Unix/Signals.inc b/llvm/lib/Support/Unix/Signals.inc index 634c16aa36c..be05eabfb2e 100644 --- a/llvm/lib/Support/Unix/Signals.inc +++ b/llvm/lib/Support/Unix/Signals.inc @@ -43,7 +43,6 @@ #include "llvm/Support/Mutex.h" #include "llvm/Support/Program.h" #include "llvm/Support/SaveAndRestore.h" -#include "llvm/Support/UniqueLock.h" #include "llvm/Support/raw_ostream.h" #include <algorithm> #include <string> |

