OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include "native_client/src/include/nacl_compiler_annotations.h" | 9 #include "native_client/src/include/nacl_compiler_annotations.h" |
10 #include "native_client/src/include/nacl_macros.h" | 10 #include "native_client/src/include/nacl_macros.h" |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 * TODO(mseaborn): Ideally this interface should be hidden in processes | 128 * TODO(mseaborn): Ideally this interface should be hidden in processes |
129 * that aren't PNaCl sandboxed translator processes. However, we haven't | 129 * that aren't PNaCl sandboxed translator processes. However, we haven't |
130 * yet plumbed though a flag to indicate when a NaCl process is a PNaCl | 130 * yet plumbed though a flag to indicate when a NaCl process is a PNaCl |
131 * translator process. The risk of an app accidentally depending on the | 131 * translator process. The risk of an app accidentally depending on the |
132 * presence of this interface is much lower than for other non-stable IRT | 132 * presence of this interface is much lower than for other non-stable IRT |
133 * interfaces, because this interface is not useful to apps. | 133 * interfaces, because this interface is not useful to apps. |
134 */ | 134 */ |
135 { NACL_IRT_PRIVATE_PNACL_TRANSLATOR_LINK_v0_1, | 135 { NACL_IRT_PRIVATE_PNACL_TRANSLATOR_LINK_v0_1, |
136 &nacl_irt_private_pnacl_translator_link, | 136 &nacl_irt_private_pnacl_translator_link, |
137 sizeof(nacl_irt_private_pnacl_translator_link), NULL }, | 137 sizeof(nacl_irt_private_pnacl_translator_link), NULL }, |
| 138 /* |
| 139 * TODO(jvoung): Similar to NACL_IRT_PRIVATE_PNACL_TRANSLATOR_LINK_v0_1 |
| 140 * ideally this should be hidden from non-translator apps. |
| 141 */ |
| 142 { NACL_IRT_PRIVATE_PNACL_TRANSLATOR_COMPILE_v0_1, |
| 143 &nacl_irt_private_pnacl_translator_compile, |
| 144 sizeof(nacl_irt_private_pnacl_translator_compile), NULL }, |
138 }; | 145 }; |
139 | 146 |
140 size_t nacl_irt_query_core(const char *interface_ident, | 147 size_t nacl_irt_query_core(const char *interface_ident, |
141 void *table, size_t tablesize) { | 148 void *table, size_t tablesize) { |
142 return nacl_irt_query_list(interface_ident, table, tablesize, | 149 return nacl_irt_query_list(interface_ident, table, tablesize, |
143 irt_interfaces, sizeof(irt_interfaces)); | 150 irt_interfaces, sizeof(irt_interfaces)); |
144 } | 151 } |
OLD | NEW |