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

Side by Side Diff: src/untrusted/irt/irt_interfaces.h

Issue 24889002: Provides some of the missing POSIX file syscalls Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « src/untrusted/irt/irt_filename.c ('k') | src/untrusted/irt/irt_interfaces.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_INTERFACES_H_ 6 #ifndef NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_INTERFACES_H_
7 #define NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_INTERFACES_H_ 7 #define NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_INTERFACES_H_
8 8
9 #include <stddef.h> 9 #include <stddef.h>
10 10
11 extern size_t nacl_irt_interface(const char *interface_ident, 11 extern size_t nacl_irt_interface(const char *interface_ident,
12 void *table, size_t tablesize); 12 void *table, size_t tablesize);
13 13
14 extern const struct nacl_irt_basic nacl_irt_basic; 14 extern const struct nacl_irt_basic nacl_irt_basic;
15 extern const struct nacl_irt_fdio nacl_irt_fdio; 15 extern const struct nacl_irt_fdio nacl_irt_fdio;
16 extern const struct nacl_irt_dev_fdio nacl_irt_dev_fdio;
16 extern const struct nacl_irt_filename nacl_irt_filename; 17 extern const struct nacl_irt_filename nacl_irt_filename;
17 extern const struct nacl_irt_dev_filename_v0_2 nacl_irt_dev_filename; 18 extern const struct nacl_irt_dev_filename_v0_2 nacl_irt_dev_filename_v0_2;
19 extern const struct nacl_irt_dev_filename nacl_irt_dev_filename;
18 extern const struct nacl_irt_memory_v0_1 nacl_irt_memory_v0_1; 20 extern const struct nacl_irt_memory_v0_1 nacl_irt_memory_v0_1;
19 extern const struct nacl_irt_memory_v0_2 nacl_irt_memory_v0_2; 21 extern const struct nacl_irt_memory_v0_2 nacl_irt_memory_v0_2;
20 extern const struct nacl_irt_memory nacl_irt_memory; 22 extern const struct nacl_irt_memory nacl_irt_memory;
21 extern const struct nacl_irt_dyncode nacl_irt_dyncode; 23 extern const struct nacl_irt_dyncode nacl_irt_dyncode;
22 extern const struct nacl_irt_thread nacl_irt_thread; 24 extern const struct nacl_irt_thread nacl_irt_thread;
23 extern const struct nacl_irt_futex nacl_irt_futex; 25 extern const struct nacl_irt_futex nacl_irt_futex;
24 extern const struct nacl_irt_mutex nacl_irt_mutex; 26 extern const struct nacl_irt_mutex nacl_irt_mutex;
25 extern const struct nacl_irt_cond nacl_irt_cond; 27 extern const struct nacl_irt_cond nacl_irt_cond;
26 extern const struct nacl_irt_sem nacl_irt_sem; 28 extern const struct nacl_irt_sem nacl_irt_sem;
27 extern const struct nacl_irt_tls nacl_irt_tls; 29 extern const struct nacl_irt_tls nacl_irt_tls;
28 extern const struct nacl_irt_blockhook nacl_irt_blockhook; 30 extern const struct nacl_irt_blockhook nacl_irt_blockhook;
29 extern const struct nacl_irt_ppapihook nacl_irt_ppapihook; 31 extern const struct nacl_irt_ppapihook nacl_irt_ppapihook;
30 extern const struct nacl_irt_resource_open nacl_irt_resource_open; 32 extern const struct nacl_irt_resource_open nacl_irt_resource_open;
31 extern const struct nacl_irt_random nacl_irt_random; 33 extern const struct nacl_irt_random nacl_irt_random;
32 extern const struct nacl_irt_clock nacl_irt_clock; 34 extern const struct nacl_irt_clock nacl_irt_clock;
33 extern const struct nacl_irt_dev_getpid nacl_irt_dev_getpid; 35 extern const struct nacl_irt_dev_getpid nacl_irt_dev_getpid;
34 extern const struct nacl_irt_exception_handling nacl_irt_exception_handling; 36 extern const struct nacl_irt_exception_handling nacl_irt_exception_handling;
35 extern const struct nacl_irt_dev_list_mappings nacl_irt_dev_list_mappings; 37 extern const struct nacl_irt_dev_list_mappings nacl_irt_dev_list_mappings;
36 38
37 #endif /* NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_INTERFACES_H_ */ 39 #endif /* NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_INTERFACES_H_ */
OLDNEW
« no previous file with comments | « src/untrusted/irt/irt_filename.c ('k') | src/untrusted/irt/irt_interfaces.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698