| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2008 The Native Client Authors. All rights reserved. | 2 * Copyright 2012 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 * NaCl run time. | 8 * NaCl run time. |
| 9 */ | 9 */ |
| 10 #include <fcntl.h> | 10 #include <fcntl.h> |
| 11 #include <stdlib.h> | 11 #include <stdlib.h> |
| 12 | 12 |
| 13 #include "native_client/src/shared/platform/nacl_sync_checked.h" | 13 #include "native_client/src/shared/platform/nacl_sync_checked.h" |
| 14 | 14 |
| 15 #include "native_client/src/trusted/desc/nacl_desc_io.h" | 15 #include "native_client/src/trusted/desc/nacl_desc_io.h" |
| 16 | 16 |
| 17 #include "native_client/src/trusted/service_runtime/sel_ldr.h" | 17 #include "native_client/src/trusted/service_runtime/sel_ldr.h" |
| 18 #include "native_client/src/trusted/service_runtime/arch/arm/sel_rt.h" | 18 #include "native_client/src/trusted/service_runtime/arch/mips/sel_rt.h" |
| 19 | 19 |
| 20 /* | 20 /* |
| 21 * No segments: (currently) no-op. | 21 * No segments: (currently) no-op. |
| 22 */ | 22 */ |
| 23 NaClErrorCode NaClAppPrepareToLaunch(struct NaClApp *nap) { | 23 NaClErrorCode NaClAppPrepareToLaunch(struct NaClApp *nap) { |
| 24 UNREFERENCED_PARAMETER(nap); | 24 UNREFERENCED_PARAMETER(nap); |
| 25 | 25 |
| 26 return LOAD_OK; | 26 return LOAD_OK; |
| 27 } | 27 } |
| OLD | NEW |