OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2008 The Native Client Authors. All rights reserved. | 2 * Copyright 2008 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* | 7 /* |
8 * Gather ye all module initializations and finalizations here. | 8 * Gather ye all module initializations and finalizations here. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef SERVICE_RUNTIME_NACL_ALL_MODULES_H__ | 11 #ifndef SERVICE_RUNTIME_NACL_ALL_MODULES_H__ |
12 #define SERVICE_RUNTIME_NACL_ALL_MODULES_H__ 1 | 12 #define SERVICE_RUNTIME_NACL_ALL_MODULES_H__ 1 |
13 | 13 |
14 #include "native_client/src/include/nacl_base.h" | 14 #include "native_client/src/include/nacl_base.h" |
15 | 15 |
16 EXTERN_C_BEGIN | 16 EXTERN_C_BEGIN |
17 | 17 |
18 void NaClAllModulesInit(void); | 18 void NaClAllModulesInit(void); |
19 void NaClAllModulesFini(void); | 19 void NaClAllModulesFini(void); |
| 20 void NaClAllModulesInitForNonSfi(void); |
| 21 void NaClAllModulesFiniForNonSfi(void); |
20 | 22 |
21 EXTERN_C_END | 23 EXTERN_C_END |
22 | 24 |
23 #endif | 25 #endif |
OLD | NEW |