Index: src/trusted/validator_arm/ncvalidate.h |
diff --git a/src/trusted/validator_arm/ncvalidate.h b/src/trusted/validator_arm/ncvalidate.h |
index a4a319ac63b700cf621a9d0aab2de72a45f756a0..e363b84a0df893d02a1223a01268b0730bfaabdd 100644 |
--- a/src/trusted/validator_arm/ncvalidate.h |
+++ b/src/trusted/validator_arm/ncvalidate.h |
@@ -1,8 +1,8 @@ |
/* |
- * Copyright 2009 The Native Client Authors. All rights reserved. |
+ * Copyright 2011 The Native Client Authors. All rights reserved. |
bsy
2011/09/21 22:32:17
(c) symbol. "be" movement.
|
* Use of this source code is governed by a BSD-style license that can |
* be found in the LICENSE file. |
- * Copyright 2009, Google Inc. |
+ * Copyright 2011, Google Inc. |
*/ |
#ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_ARM_V2_NCVALIDATE_H |
@@ -27,9 +27,11 @@ EXTERN_C_BEGIN |
* mbase location of the code in memory right now. |
* vbase virtual address where the code will appear at runtime. |
* size number of bytes of code provided. |
+ * thumb whether the code should be evaluated as thumb mode |
Karl
2011/09/19 19:56:05
Thumb2?
|
* Result: 0 if validation succeeded, non-zero if we found problems. |
*/ |
-int NCValidateSegment(uint8_t *mbase, uint32_t vbase, size_t size); |
+int NCValidateSegment(uint8_t *mbase, uint32_t vbase, size_t size, |
+ bool thumb); |
EXTERN_C_END |