diff options
author | 2020-01-29 16:09:38 +0900 | |
---|---|---|
committer | 2020-02-07 03:25:40 +0000 | |
commit | 99c19ca707391f0908313c7cee2ef315d2b5cb3c (patch) | |
tree | c5213c3eb212732c88cc455e8ca67c1990d29767 /libnativeloader/native_loader_namespace.h | |
parent | cf0c6ef642517fba3bc9a211acaed742ff39b86d (diff) |
Update platform namespace name
Platform namespace has been renamed as 'system' from linkerconfig
generator. To meet this requirement, libnativeloader should search for
namespace 'system' rather than namespace 'platform'.
Bug: 147987608
Test: m -j passed
Test: atest libnativeloader_test passed
Change-Id: I23d865ac71a80619f291eb9ae0761a2cad5df352
Diffstat (limited to 'libnativeloader/native_loader_namespace.h')
-rw-r--r-- | libnativeloader/native_loader_namespace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnativeloader/native_loader_namespace.h b/libnativeloader/native_loader_namespace.h index d07c431ebd..ee84f61cd8 100644 --- a/libnativeloader/native_loader_namespace.h +++ b/libnativeloader/native_loader_namespace.h @@ -60,7 +60,7 @@ struct NativeLoaderNamespace { static Result<NativeLoaderNamespace> GetExportedNamespace(const std::string& name, bool is_bridged); - static Result<NativeLoaderNamespace> GetPlatformNamespace(bool is_bridged); + static Result<NativeLoaderNamespace> GetSystemNamespace(bool is_bridged); private: explicit NativeLoaderNamespace(const std::string& name, android_namespace_t* ns) |