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

Side by Side 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: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Native Client Authors. All rights reserved. 1 // Copyright 2016 The Native Client Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NATIVE_CLIENT_SRC_UNTRUSTED_PLL_LOADER_PLL_ROOT_H_ 5 #ifndef NATIVE_CLIENT_SRC_UNTRUSTED_PLL_LOADER_PLL_ROOT_H_
6 #define NATIVE_CLIENT_SRC_UNTRUSTED_PLL_LOADER_PLL_ROOT_H_ 1 6 #define NATIVE_CLIENT_SRC_UNTRUSTED_PLL_LOADER_PLL_ROOT_H_ 1
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 struct PLLTLSBlockGetter { 10 struct PLLTLSBlockGetter {
(...skipping 29 matching lines...) Expand all
40 // The number of right shifts to generate the second hash from the first. 40 // The number of right shifts to generate the second hash from the first.
41 size_t bloom_filter_shift2; 41 size_t bloom_filter_shift2;
42 const uint32_t *bloom_filter_data; 42 const uint32_t *bloom_filter_data;
43 43
44 // Thread-local variables (TLS). 44 // Thread-local variables (TLS).
45 void *tls_template; 45 void *tls_template;
46 size_t tls_template_data_size; // Size of initialized data. 46 size_t tls_template_data_size; // Size of initialized data.
47 size_t tls_template_total_size; // Size of initialized data + BSS. 47 size_t tls_template_total_size; // Size of initialized data + BSS.
48 size_t tls_template_alignment; 48 size_t tls_template_alignment;
49 PLLTLSBlockGetter *tls_block_getter; 49 PLLTLSBlockGetter *tls_block_getter;
50
51 // Dependencies list (akin to DT_NEEDED in ELF).
52 size_t dependencies_count;
53 const char *dependencies_list;
Mark Seaborn 2016/03/29 19:01:11 How about a comment: Null-separated list of libra
Sean Klein 2016/03/29 19:43:55 Done.
50 }; 54 };
51 55
52 #endif 56 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698