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

Side by Side Diff: ppapi/native_client/src/untrusted/pnacl_irt_shim/shim_entry.c

Issue 10914053: Relocating files in the nacl repo that belong in chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge and fix windows 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
Nick Bray 2012/09/06 17:11:58 Huh? This is the first time I've seen the copyrig
bradn 2012/09/06 18:53:16 Done.
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 6
7 #include "native_client/src/include/elf32.h" 7 #include "native_client/src/include/elf32.h"
8 #include "native_client/src/include/elf_auxv.h" 8 #include "native_client/src/include/elf_auxv.h"
9 #include "native_client/src/include/nacl_macros.h" 9 #include "native_client/src/include/nacl_macros.h"
10 #include "native_client/src/untrusted/pnacl_irt_shim/shim_ppapi.h" 10 #include "native_client/src/untrusted/pnacl_irt_shim/shim_ppapi.h"
11 #include "native_client/src/untrusted/nacl/nacl_startup.h" 11 #include "native_client/src/untrusted/nacl/nacl_startup.h"
12 12
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 * seems brittle (what if the bitcode link was separated from translation). 48 * seems brittle (what if the bitcode link was separated from translation).
49 * Thus we always wrap _start, even if there is no IRT auxv entry. 49 * Thus we always wrap _start, even if there is no IRT auxv entry.
50 */ 50 */
51 51
52 /* 52 /*
53 * Call the user entry point function. It should not return. 53 * Call the user entry point function. It should not return.
54 * TODO(sehr): Find a way to ensure this is invoked via a tail call. 54 * TODO(sehr): Find a way to ensure this is invoked via a tail call.
55 */ 55 */
56 _start(info); 56 _start(info);
57 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698