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

Side by Side Diff: mojo/nacl/generator/libmojo.cc.tmpl

Issue 608613003: monacl: build_newlib -> build_pnacl_newlib. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « mojo/mojo_nacl.gyp ('k') | testing/gtest_nacl.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 {{generator_warning}} 5 {{generator_warning}}
6 6
7 #include "mojo/public/c/system/core.h" 7 #include "mojo/public/c/system/core.h"
8 #include "native_client/src/public/chrome_main.h" 8 #include "native_client/src/public/chrome_main.h"
9 #include "native_client/src/public/imc_syscalls.h" 9 #include "native_client/src/public/imc_syscalls.h"
10 #include "native_client/src/public/imc_types.h" 10 #include "native_client/src/public/imc_types.h"
11 11
12 #define NACL_MOJO_DESC (NACL_CHROME_DESC_BASE + 2) 12 #define NACL_MOJO_DESC (NACL_CHROME_DESC_BASE + 2)
13 13
14 static void DoMojoCall(uint32_t params[], int num_params) { 14 static void DoMojoCall(uint32_t params[], nacl_abi_size_t num_params) {
15 NaClAbiNaClImcMsgIoVec iov[1] = { 15 NaClAbiNaClImcMsgIoVec iov[1] = {
16 {params, num_params} 16 {params, num_params}
17 }; 17 };
18 NaClAbiNaClImcMsgHdr msgh = {iov, 1, NULL, 0}; 18 NaClAbiNaClImcMsgHdr msgh = {iov, 1, NULL, 0};
19 // Note: return value unchecked. We're relying on the result parameter being 19 // Note: return value unchecked. We're relying on the result parameter being
20 // unmodified - if the syscall fails, the Mojo function will return whatever 20 // unmodified - if the syscall fails, the Mojo function will return whatever
21 // the result parameter was initialized to before this function was called. 21 // the result parameter was initialized to before this function was called.
22 imc_sendmsg(NACL_MOJO_DESC, &msgh, 0); 22 imc_sendmsg(NACL_MOJO_DESC, &msgh, 0);
23 } 23 }
24 24
25 {{body}} 25 {{body}}
OLDNEW
« no previous file with comments | « mojo/mojo_nacl.gyp ('k') | testing/gtest_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698