LLDB mainline
DynamicLoaderDarwinProperties.h
Go to the documentation of this file.
1//===-- DynamicLoaderDarwinProperties.h -------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_DYNAMICLOADER_MACOSX_DYLD_DYNAMICLOADERDARWINPROPERTIES_H
10#define LLDB_SOURCE_PLUGINS_DYNAMICLOADER_MACOSX_DYLD_DYNAMICLOADERDARWINPROPERTIES_H
11
13
14namespace lldb_private {
15
17public:
19 public:
21 };
22 static llvm::StringRef GetSettingName();
25 ~DynamicLoaderDarwinProperties() override = default;
26 bool GetEnableParallelImageLoad() const;
27
28private:
29 std::unique_ptr<ExperimentalProperties> m_experimental_properties;
30};
31
32} // namespace lldb_private
33
34#endif // LLDB_SOURCE_PLUGINS_DYNAMICLOADER_MACOSX_DYLD_DYNAMICLOADERDARWINPROPERTIES_H
static DynamicLoaderDarwinProperties & GetGlobal()
std::unique_ptr< ExperimentalProperties > m_experimental_properties
A class that represents a running process on the host machine.