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

Unified Diff: src/untrusted/nacl/nacl_irt.h

Issue 25027006: Stackable IRT Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 years, 3 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 | « src/untrusted/nacl/nacl.scons ('k') | src/untrusted/nacl/nacl_irt.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/nacl/nacl_irt.h
diff --git a/src/untrusted/nacl/nacl_irt.h b/src/untrusted/nacl/nacl_irt.h
index e42ff403a88035f99893132ca7b0415f4a122394..62276cd19631ca1b9ddeffd2f1181e5d04d6e67c 100644
--- a/src/untrusted/nacl/nacl_irt.h
+++ b/src/untrusted/nacl/nacl_irt.h
@@ -13,8 +13,12 @@
#include "native_client/src/untrusted/irt/irt.h"
#include "native_client/src/untrusted/irt/irt_dev.h"
+extern TYPE_nacl_irt_query nacl_irt_module_init(
+ TYPE_nacl_irt_query irt_query) __attribute((weak));
+
extern TYPE_nacl_irt_query __nacl_irt_query;
+extern struct nacl_irt_instance __libnacl_irt_instance;
extern struct nacl_irt_basic __libnacl_irt_basic;
extern struct nacl_irt_fdio __libnacl_irt_fdio;
extern struct nacl_irt_dev_fdio __libnacl_irt_dev_fdio;
@@ -26,9 +30,13 @@ extern struct nacl_irt_dev_getpid __libnacl_irt_dev_getpid;
extern int __libnacl_irt_query(const char *interface,
void *table, size_t table_size);
+
+extern int nacl_irt_interface_set(const char *interface_ident,
+ void *table, size_t tablesize, void *old_table);
+
extern void __libnacl_mandatory_irt_query(const char *interface_ident,
void *table, size_t table_size);
-extern void __libnacl_irt_init(Elf32_auxv_t *auxv);
+extern void __libnacl_irt_init(int argc, char **argv, Elf32_auxv_t *auxv);
extern void __libnacl_irt_dev_fdio_init(void);
extern void __libnacl_irt_dev_filename_init(void);
« no previous file with comments | « src/untrusted/nacl/nacl.scons ('k') | src/untrusted/nacl/nacl_irt.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698