mirror of
https://github.com/acpica/acpica/
synced 2025-03-10 16:21:40 +03:00
Removed duplicate error msg. Eliminated extraneous "internal" errors
date 2001.07.17.19.33.00; author rmoore1; state Exp;
This commit is contained in:
parent
c4374245c9
commit
d43dad2904
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: asltypes.h - compiler data types and struct definitions
|
||||
* $Revision: 1.19 $
|
||||
* $Revision: 1.23 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -120,6 +120,9 @@
|
||||
#define __ASLTYPES_H
|
||||
|
||||
|
||||
#include <time.h>
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* Structure definitions
|
||||
@ -321,6 +324,16 @@ ACPI_STATUS (*ASL_WALK_CALLBACK) (
|
||||
void *Context);
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
time_t StartTime;
|
||||
time_t EndTime;
|
||||
char *EventName;
|
||||
BOOLEAN Valid;
|
||||
|
||||
} ASL_EVENT_INFO;
|
||||
|
||||
|
||||
#define ASL_ERROR 0
|
||||
#define ASL_WARNING 1
|
||||
#define ASL_REMARK 2
|
||||
@ -359,7 +372,7 @@ typedef enum
|
||||
ASL_MSG_ARG_COUNT_LO,
|
||||
ASL_MSG_NO_RETVAL,
|
||||
ASL_MSG_SOME_NO_RETVAL,
|
||||
ASL_MSG_INTERNAL,
|
||||
ASL_MSG_COMPILER_INTERNAL,
|
||||
ASL_MSG_BACKWARDS_OFFSET,
|
||||
ASL_MSG_UNKNOWN_RESERVED_NAME,
|
||||
ASL_MSG_NAME_EXISTS,
|
||||
@ -380,6 +393,7 @@ typedef enum
|
||||
ASL_MSG_RESOURCE_FIELD,
|
||||
ASL_MSG_BYTES_TO_BITS,
|
||||
ASL_MSG_BITS_TO_BYTES,
|
||||
ASL_MSG_AML_NOT_IMPLEMENTED,
|
||||
|
||||
} ASL_MESSAGE_IDS;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user