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

Side by Side Diff: src/untrusted/irt/irt_ppapi.h

Issue 7605029: Extend IRT with nacl_irt_resource_open interface (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: remove empty lines Created 9 years, 4 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) 2011 The Native Client Authors. All rights reserved. 2 * Copyright (c) 2011 The Native Client 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 NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_PPAPI_H_ 7 #ifndef NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_PPAPI_H_
8 #define NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_PPAPI_H_ 1 8 #define NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_PPAPI_H_ 1
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 18 matching lines...) Expand all
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 typedef void (*PP_StartFunc)(const struct PP_StartFunctions *funcs); 36 typedef void (*PP_StartFunc)(const struct PP_StartFunctions *funcs);
37 typedef void (*PP_RegisterThreadFuncs)(const struct PP_ThreadFunctions *funcs); 37 typedef void (*PP_RegisterThreadFuncs)(const struct PP_ThreadFunctions *funcs);
38 38
39 extern int ppapi_pre_initialized;
39 #endif 40 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698