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/Process.inc | |
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/Process.inc')
-rw-r--r-- | llvm/lib/Support/Unix/Process.inc | 4 |
1 files changed, 2 insertions, 2 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) |