Renumber x86 fatal error codes
Makes the _NANO_ERR_xxx error code values continuous. Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com> Change-Id: Iec0a5d0d6c54a94511a20608ba59626148baaca4
This commit is contained in:
parent
c26a2e8147
commit
6f3aebe910
1 changed files with 2 additions and 2 deletions
|
@ -192,12 +192,12 @@ typedef struct nanoIsf {
|
|||
* and _SysFatalErrorHandler().
|
||||
*/
|
||||
|
||||
#define _NANO_ERR_SPURIOUS_INT (0) /* Unhandled exception/interrupt */
|
||||
#define _NANO_ERR_SPURIOUS_INT (0) /* Unhandled exception/interrupt */
|
||||
#define _NANO_ERR_PAGE_FAULT (1) /* Page fault */
|
||||
#define _NANO_ERR_GEN_PROT_FAULT (2) /* General protection fault */
|
||||
#define _NANO_ERR_INVALID_TASK_EXIT (3) /* Invalid task exit */
|
||||
#define _NANO_ERR_STACK_CHK_FAIL (4) /* Stack corruption detected */
|
||||
#define _NANO_ERR_INVALID_STRING_OP (6) /* Invalid string operation */
|
||||
#define _NANO_ERR_INVALID_STRING_OP (5) /* Invalid string operation */
|
||||
|
||||
#ifndef _ASMLANGUAGE
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue