| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 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" |
| 11 #include "native_client/src/trusted/service_runtime/nacl_error_code.h" | 11 #include "native_client/src/trusted/service_runtime/nacl_error_code.h" |
| 12 | 12 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 int32_t NaClTextSysDyncode_Modify(struct NaClAppThread *natp, | 46 int32_t NaClTextSysDyncode_Modify(struct NaClAppThread *natp, |
| 47 uint32_t dest, | 47 uint32_t dest, |
| 48 uint32_t src, | 48 uint32_t src, |
| 49 uint32_t size); | 49 uint32_t size); |
| 50 | 50 |
| 51 int32_t NaClTextSysDyncode_Delete(struct NaClAppThread *natp, | 51 int32_t NaClTextSysDyncode_Delete(struct NaClAppThread *natp, |
| 52 uint32_t dest, | 52 uint32_t dest, |
| 53 uint32_t size); | 53 uint32_t size); |
| 54 | 54 |
| 55 int32_t NaClHasSegmentGapForDyncode(struct NaClApp *nap); |
| 56 |
| 55 EXTERN_C_END | 57 EXTERN_C_END |
| 56 | 58 |
| 57 #endif | 59 #endif |
| OLD | NEW |