Deleted Added
full compact
5c5
< * $Revision: 1.78 $
---
> * $Revision: 1.89 $
13c13
< * Some or all of this work - Copyright (c) 1999 - 2005, Intel Corp.
---
> * Some or all of this work - Copyright (c) 1999 - 2007, Intel Corp.
150a151
> #define NODE_IS_RESOURCE_DATA 0x00080000
224a226,229
> typedef struct asl_file_status
> {
> UINT32 Line;
> UINT32 Offset;
225a231,233
> } ASL_FILE_STATUS;
>
>
299,303c307,313
< #define ASL_ERROR 0
< #define ASL_WARNING 1
< #define ASL_REMARK 2
< #define ASL_OPTIMIZATION 3
< #define ASL_NUM_REPORT_LEVELS 4
---
> #define ASL_WARNING 0
> #define ASL_WARNING2 1
> #define ASL_WARNING3 2
> #define ASL_ERROR 3
> #define ASL_REMARK 4
> #define ASL_OPTIMIZATION 5
> #define ASL_NUM_REPORT_LEVELS 6
307a318
> ASL_MSG_RESERVED = 0,
399d409
< ASL_MSG_STRING_LENGTH,
409c419,425
< ASL_MSG_WRITE
---
> ASL_MSG_WRITE,
> ASL_MSG_MULTIPLE_DEFAULT,
> ASL_MSG_TIMEOUT,
> ASL_MSG_RESULT_NOT_USED,
> ASL_MSG_NOT_REFERENCED,
> ASL_MSG_NON_ZERO,
> ASL_MSG_STRING_LENGTH
415a432
> /* The zeroth message is resesrved */ "",
473c490
< /* ASL_MSG_NO_CASES */ "No Case() statements under Switch()",
---
> /* ASL_MSG_NO_CASES */ "No Case statements under Switch",
481c498
< /* ASL_MSG_NOT_REACHABLE */ "Object not accessible from this scope",
---
> /* ASL_MSG_NOT_REACHABLE */ "Object is not accessible from this scope",
502c519
< /* ASL_MSG_SCOPE_FWD_REF */ "Forward references from Scope() not allowed",
---
> /* ASL_MSG_SCOPE_FWD_REF */ "Forward references from Scope operator not allowed",
507d523
< /* ASL_MSG_STRING_LENGTH */ "String constant too long (200 max)",
517c533,539
< /* ASL_MSG_WRITE */ "Could not write file"
---
> /* ASL_MSG_WRITE */ "Could not write file",
> /* ASL_MSG_MULTIPLE_DEFAULT */ "More than one Default statement within Switch construct",
> /* ASL_MSG_TIMEOUT */ "Possible operator timeout is ignored",
> /* ASL_MSG_RESULT_NOT_USED */ "Result is not used, operator has no effect",
> /* ASL_MSG_NOT_REFERENCED */ "Namespace object is not referenced",
> /* ASL_MSG_NON_ZERO */ "Operand evaluates to zero",
> /* ASL_MSG_STRING_LENGTH */ "String literal too long"
523d544
< "Error ",
524a546,548
> "Warning ",
> "Warning ",
> "Error ",
533c557
< UINT32 Gbl_ExceptionCount[ASL_NUM_REPORT_LEVELS] = {0,0,0,0};
---
> UINT32 Gbl_ExceptionCount[ASL_NUM_REPORT_LEVELS] = {0,0,0,0,0,0};