Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Unified Diff: src/untrusted/pll_loader/pll_root.h

Issue 1841113002: PNaCl Dynamic Linking: Tests storing dependencies from command line in PLL. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Code Review Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pnacl/build.sh ('k') | tests/pnacl_dynamic_loading/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/pll_loader/pll_root.h
diff --git a/src/untrusted/pll_loader/pll_root.h b/src/untrusted/pll_loader/pll_root.h
index 90dc71283351fe9a17955fc808a066cdf6af9b0f..98ea146d7a222603dc8ba60a1c6f6e1189616773 100644
--- a/src/untrusted/pll_loader/pll_root.h
+++ b/src/untrusted/pll_loader/pll_root.h
@@ -47,6 +47,12 @@ struct PLLRoot {
size_t tls_template_total_size; // Size of initialized data + BSS.
size_t tls_template_alignment;
PLLTLSBlockGetter *tls_block_getter;
+
+ // Dependencies list (akin to DT_NEEDED in ELF).
+ size_t dependencies_count;
+ // Null-separated list of library sonames.
+ // For example, "libfoo.so\0libbar.so\0" would have dependencies_count = 2.
+ const char *dependencies_list;
};
#endif
« no previous file with comments | « pnacl/build.sh ('k') | tests/pnacl_dynamic_loading/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698