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

Side by Side Diff: ppapi/nacl_irt/public/irt_ppapi.h

Issue 312323005: NaCl: Fix irt_ppapi.h to compile with -Wstrict-prototypes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 The Chromium Authors. All rights reserved.
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 #ifndef PPAPI_NACL_IRT_PUBLIC_IRT_PPAPI_H_ 7 #ifndef PPAPI_NACL_IRT_PUBLIC_IRT_PPAPI_H_
8 #define PPAPI_NACL_IRT_PUBLIC_IRT_PPAPI_H_ 8 #define PPAPI_NACL_IRT_PUBLIC_IRT_PPAPI_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
11 11
12 #include "ppapi/c/ppp.h" 12 #include "ppapi/c/ppp.h"
13 13
14 struct PP_StartFunctions { 14 struct PP_StartFunctions {
15 int32_t (*PPP_InitializeModule)(PP_Module module_id, 15 int32_t (*PPP_InitializeModule)(PP_Module module_id,
16 PPB_GetInterface get_browser_interface); 16 PPB_GetInterface get_browser_interface);
17 void (*PPP_ShutdownModule)(); 17 void (*PPP_ShutdownModule)(void);
18 const void* (*PPP_GetInterface)(const char* interface_name); 18 const void* (*PPP_GetInterface)(const char* interface_name);
19 }; 19 };
20 20
21 struct PP_ThreadFunctions { 21 struct PP_ThreadFunctions {
22 /* 22 /*
23 * This is a cut-down version of pthread_create()/pthread_join(). 23 * This is a cut-down version of pthread_create()/pthread_join().
24 * We omit thread creation attributes and the thread's return value. 24 * We omit thread creation attributes and the thread's return value.
25 * 25 *
26 * We use uintptr_t as the thread ID type because pthread_t is not 26 * We use uintptr_t as the thread ID type because pthread_t is not
27 * part of the stable ABI; a user thread library might choose an 27 * part of the stable ABI; a user thread library might choose an
28 * arbitrary size for its own pthread_t. 28 * arbitrary size for its own pthread_t.
29 */ 29 */
30 int (*thread_create)(uintptr_t* tid, 30 int (*thread_create)(uintptr_t* tid,
31 void (*func)(void* thread_argument), 31 void (*func)(void* thread_argument),
32 void* thread_argument); 32 void* thread_argument);
33 int (*thread_join)(uintptr_t tid); 33 int (*thread_join)(uintptr_t tid);
34 }; 34 };
35 35
36 #define NACL_IRT_PPAPIHOOK_v0_1 "nacl-irt-ppapihook-0.1" 36 #define NACL_IRT_PPAPIHOOK_v0_1 "nacl-irt-ppapihook-0.1"
37 struct nacl_irt_ppapihook { 37 struct nacl_irt_ppapihook {
38 int (*ppapi_start)(const struct PP_StartFunctions*); 38 int (*ppapi_start)(const struct PP_StartFunctions*);
39 void (*ppapi_register_thread_creator)(const struct PP_ThreadFunctions*); 39 void (*ppapi_register_thread_creator)(const struct PP_ThreadFunctions*);
40 }; 40 };
41 41
42 #endif // PPAPI_NACL_IRT_PUBLIC_IRT_PPAPI_H_ 42 #endif // PPAPI_NACL_IRT_PUBLIC_IRT_PPAPI_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698