hanchenye-llvm-project/lldb/source/DataFormatters
Saleem Abdulrasool 16ff860469 remove use of Mutex in favour of std::{,recursive_}mutex
This is a pretty straightforward first pass over removing a number of uses of
Mutex in favor of std::mutex or std::recursive_mutex. The problem is that there
are interfaces which take Mutex::Locker & to lock internal locks. This patch
cleans up most of the easy cases. The only non-trivial change is in
CommandObjectTarget.cpp where a Mutex::Locker was split into two.

llvm-svn: 269877
2016-05-18 01:59:10 +00:00
..
CMakeLists.txt
CXXFunctionPointer.cpp
DataVisualization.cpp
DumpValueObjectOptions.cpp Add a --element-count option to the expression command 2016-04-25 00:52:47 +00:00
FormatCache.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
FormatClasses.cpp
FormatManager.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
FormattersHelpers.cpp Remove even more of the data formatters that silently run code 2016-04-08 21:24:24 +00:00
LanguageCategory.cpp
StringPrinter.cpp
TypeCategory.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
TypeCategoryMap.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
TypeFormat.cpp Now that SymbolFileDWARF supports having types in completely separate .pcm file with "-fmodules -gmodules", each SymbolFileDWARF can reference module DWARF info by looking in other DWARF files. Then if you have 1000 .o files that each reference one or more .pcm files in their debug info, a simple Module::FindTypes(...) call can end up searching the same .pcm file over and over and over. Now all internal FindTypes methods in classes (ModuleList, Module, SymbolFile) now take an extra argument: 2016-02-10 21:28:13 +00:00
TypeSummary.cpp Fix TestDataFormatterScript for Linux. 2016-01-29 03:48:08 +00:00
TypeSynthetic.cpp Add support for synthetic child providers to optionally return a customized typename for display 2016-05-02 00:41:24 +00:00
TypeValidator.cpp
ValueObjectPrinter.cpp Add a --element-count option to the expression command 2016-04-25 00:52:47 +00:00
VectorType.cpp