OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 #include "build/build_config.h" |
| 6 |
5 #include "native_client/src/include/portability.h" | 7 #include "native_client/src/include/portability.h" |
6 | 8 |
7 #if NACL_OSX | 9 #if NACL_OSX |
8 #include <crt_externs.h> | 10 #include <crt_externs.h> |
9 #endif | 11 #endif |
10 | 12 |
11 EXTERN_C_BEGIN | 13 EXTERN_C_BEGIN |
12 #include "native_client/src/shared/platform/nacl_sync.h" | 14 #include "native_client/src/shared/platform/nacl_sync.h" |
13 #include "native_client/src/shared/platform/nacl_sync_checked.h" | 15 #include "native_client/src/shared/platform/nacl_sync_checked.h" |
14 #include "native_client/src/trusted/service_runtime/nacl_globals.h" | 16 #include "native_client/src/trusted/service_runtime/nacl_globals.h" |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 NaClAppDtor(&state); | 201 NaClAppDtor(&state); |
200 | 202 |
201 done_file_dtor: | 203 done_file_dtor: |
202 fflush(stdout); | 204 fflush(stdout); |
203 | 205 |
204 NaClAllModulesFini(); | 206 NaClAllModulesFini(); |
205 | 207 |
206 return ret_code; | 208 return ret_code; |
207 } | 209 } |
208 | 210 |
OLD | NEW |