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

Unified Diff: src/trusted/validator_arm/ncvalidate.h

Issue 7799013: Intial Thumb2 Sandbox (naclrev 6680) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: fix comma Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698