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 #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 |
(...skipping 11 matching lines...) Expand all Loading... |
22 extern const struct nacl_irt_sem nacl_irt_sem; | 22 extern const struct nacl_irt_sem nacl_irt_sem; |
23 extern const struct nacl_irt_tls nacl_irt_tls; | 23 extern const struct nacl_irt_tls nacl_irt_tls; |
24 extern const struct nacl_irt_blockhook nacl_irt_blockhook; | 24 extern const struct nacl_irt_blockhook nacl_irt_blockhook; |
25 extern const struct nacl_irt_ppapihook nacl_irt_ppapihook; | 25 extern const struct nacl_irt_ppapihook nacl_irt_ppapihook; |
26 extern const struct nacl_irt_resource_open nacl_irt_resource_open; | 26 extern const struct nacl_irt_resource_open nacl_irt_resource_open; |
27 extern const struct nacl_irt_random nacl_irt_random; | 27 extern const struct nacl_irt_random nacl_irt_random; |
28 extern const struct nacl_irt_clock nacl_irt_clock; | 28 extern const struct nacl_irt_clock nacl_irt_clock; |
29 extern const struct nacl_irt_dev_getpid nacl_irt_dev_getpid; | 29 extern const struct nacl_irt_dev_getpid nacl_irt_dev_getpid; |
30 extern const struct nacl_irt_dev_exception_handling | 30 extern const struct nacl_irt_dev_exception_handling |
31 nacl_irt_dev_exception_handling; | 31 nacl_irt_dev_exception_handling; |
| 32 extern const struct nacl_irt_dev_mprotect nacl_irt_dev_mprotect; |
32 | 33 |
33 #endif /* NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_INTERFACES_H_ */ | 34 #endif /* NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_INTERFACES_H_ */ |
OLD | NEW |