| OLD | NEW |
| (Empty) | |
| 1 /* |
| 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 |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_VALIDATION_STATUS_H_ |
| 8 #define NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_VALIDATION_STATUS_H_ |
| 9 |
| 10 /* Defines possible validation status values. */ |
| 11 typedef enum NaClValidationStatus { |
| 12 /* The call to the validator succeeded. */ |
| 13 NaClValidationSucceeded, |
| 14 /* The call to the validator failed (Reason unspecified) */ |
| 15 NaClValidationFailed, |
| 16 /* The call to the validator failed, due to not enough memory. */ |
| 17 NaClValidationFailedOutOfMemory, |
| 18 /* The call to the validator failed, due to it not being implemented yet. */ |
| 19 NaClValidationFailedNotImplemented, |
| 20 /* The call to the validator failed, because the CPU is not supported. */ |
| 21 NaClValidationFailedCpuNotSupported, |
| 22 /* The call to the validator failed, due to segment alignment issues. */ |
| 23 NaClValidationFailedSegmentationIssue |
| 24 } NaClValidationStatus; |
| 25 |
| 26 #endif /* NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_VALIDATION_STATUS_H_ */ |
| OLD | NEW |