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

Side by Side Diff: src/trusted/service_runtime/arch/mips/nacl_app.c

Issue 10919162: [MIPS] Implementation of sel_ldr for MIPS architecture. (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Rebase (Saturday morning). Created 8 years, 3 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
OLDNEW
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 }
OLDNEW
« no previous file with comments | « src/trusted/platform_qualify/build.scons ('k') | src/trusted/service_runtime/arch/mips/nacl_signal_mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698