OLD | NEW |
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 Loading... |
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 |
OLD | NEW |