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

Side by Side Diff: src/trusted/service_runtime/nacl_text.h

Issue 12209042: Ensure syscall functions are consistently prefixed with "NaClSys" (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 years, 10 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_TRUSTED_SERVICE_RUNTIME_NACL_TEXT_H_ 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_TEXT_H_
8 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_TEXT_H_ 8 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_TEXT_H_
9 9
10 #include "native_client/src/include/portability.h" 10 #include "native_client/src/include/portability.h"
(...skipping 21 matching lines...) Expand all
32 struct NaClDescEffectorShm; 32 struct NaClDescEffectorShm;
33 int NaClDescEffectorShmCtor(struct NaClDescEffectorShm *self) NACL_WUR; 33 int NaClDescEffectorShmCtor(struct NaClDescEffectorShm *self) NACL_WUR;
34 34
35 int NaClMinimumThreadGeneration(struct NaClApp *nap); 35 int NaClMinimumThreadGeneration(struct NaClApp *nap);
36 36
37 int32_t NaClTextDyncodeCreate(struct NaClApp *nap, 37 int32_t NaClTextDyncodeCreate(struct NaClApp *nap,
38 uint32_t dest, 38 uint32_t dest,
39 void *code_copy, 39 void *code_copy,
40 uint32_t size) NACL_WUR; 40 uint32_t size) NACL_WUR;
41 41
42 int32_t NaClTextSysDyncodeCreate(struct NaClAppThread *natp, 42 int32_t NaClSysDyncodeCreate(struct NaClAppThread *natp,
43 uint32_t dest, 43 uint32_t dest,
44 uint32_t src, 44 uint32_t src,
45 uint32_t size) NACL_WUR; 45 uint32_t size) NACL_WUR;
46 46
47 int32_t NaClTextSysDyncodeModify(struct NaClAppThread *natp, 47 int32_t NaClSysDyncodeModify(struct NaClAppThread *natp,
48 uint32_t dest, 48 uint32_t dest,
49 uint32_t src, 49 uint32_t src,
50 uint32_t size) NACL_WUR; 50 uint32_t size) NACL_WUR;
51 51
52 int32_t NaClTextSysDyncodeDelete(struct NaClAppThread *natp, 52 int32_t NaClSysDyncodeDelete(struct NaClAppThread *natp,
53 uint32_t dest, 53 uint32_t dest,
54 uint32_t size) NACL_WUR; 54 uint32_t size) NACL_WUR;
55 55
56 EXTERN_C_END 56 EXTERN_C_END
57 57
58 #endif 58 #endif
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/nacl_syscall_handlers_gen.py ('k') | src/trusted/service_runtime/nacl_text.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698