diff options
author | Ryan Prichard <rprichard@google.com> | 2020-08-03 15:32:13 -0700 |
---|---|---|
committer | Ryan Prichard <rprichard@google.com> | 2020-08-04 21:41:28 +0000 |
commit | 232db5e6df0b835e2542421257f9aa2d46a8ee77 (patch) | |
tree | aac70143b957a9b66128791b5b58f26366ba7002 /libnativeloader/native_loader_namespace.cpp | |
parent | 85438f2ddf4d93598700c477710e80315668b396 (diff) |
Rename linker greylist to exempt-list
Update language to comply with Android's inclusive language guidance
See https://source.android.com/setup/contribute/respectful-code for reference
#inclusivefixit
Bug: http://b/162536543
Test: device boots
Change-Id: Ia80fb2f3be6abdadbd061570d48a4ef0fefcfebc
Diffstat (limited to 'libnativeloader/native_loader_namespace.cpp')
-rw-r--r-- | libnativeloader/native_loader_namespace.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libnativeloader/native_loader_namespace.cpp b/libnativeloader/native_loader_namespace.cpp index 79a9791dd0..fe15c70ac8 100644 --- a/libnativeloader/native_loader_namespace.cpp +++ b/libnativeloader/native_loader_namespace.cpp @@ -86,7 +86,7 @@ Result<NativeLoaderNamespace> NativeLoaderNamespace::GetSystemNamespace(bool is_ Result<NativeLoaderNamespace> NativeLoaderNamespace::Create( const std::string& name, const std::string& search_paths, const std::string& permitted_paths, - const NativeLoaderNamespace* parent, bool is_shared, bool is_greylist_enabled, + const NativeLoaderNamespace* parent, bool is_shared, bool is_exempt_list_enabled, bool also_used_as_anonymous) { bool is_bridged = false; if (parent != nullptr) { @@ -116,8 +116,8 @@ Result<NativeLoaderNamespace> NativeLoaderNamespace::Create( if (is_shared) { type |= ANDROID_NAMESPACE_TYPE_SHARED; } - if (is_greylist_enabled) { - type |= ANDROID_NAMESPACE_TYPE_GREYLIST_ENABLED; + if (is_exempt_list_enabled) { + type |= ANDROID_NAMESPACE_TYPE_EXEMPT_LIST_ENABLED; } if (!is_bridged) { |