Deleted Added
full compact
dbhistry.c (91116) dbhistry.c (99679)
1/******************************************************************************
2 *
3 * Module Name: dbhistry - debugger HISTORY command
1/******************************************************************************
2 *
3 * Module Name: dbhistry - debugger HISTORY command
4 * $Revision: 22 $
4 * $Revision: 24 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

--- 98 unchanged lines hidden (view full) ---

111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
114 *
115 *****************************************************************************/
116
117
118#include "acpi.h"
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

--- 98 unchanged lines hidden (view full) ---

111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
114 *
115 *****************************************************************************/
116
117
118#include "acpi.h"
119#include "acparser.h"
120#include "acdispat.h"
121#include "amlcode.h"
122#include "acnamesp.h"
123#include "acparser.h"
124#include "acevents.h"
125#include "acinterp.h"
126#include "acdebug.h"
119#include "acdebug.h"
127#include "actables.h"
128
129#ifdef ENABLE_DEBUGGER
130
131#define _COMPONENT ACPI_DEBUGGER
132 ACPI_MODULE_NAME ("dbhistry")
133
134
135#define HI_NO_HISTORY 0

--- 4 unchanged lines hidden (view full) ---

140typedef struct HistoryInfo
141{
142 NATIVE_CHAR Command[80];
143 UINT32 CmdNum;
144
145} HISTORY_INFO;
146
147
120
121#ifdef ENABLE_DEBUGGER
122
123#define _COMPONENT ACPI_DEBUGGER
124 ACPI_MODULE_NAME ("dbhistry")
125
126
127#define HI_NO_HISTORY 0

--- 4 unchanged lines hidden (view full) ---

132typedef struct HistoryInfo
133{
134 NATIVE_CHAR Command[80];
135 UINT32 CmdNum;
136
137} HISTORY_INFO;
138
139
148HISTORY_INFO AcpiGbl_HistoryBuffer[HISTORY_SIZE];
149UINT16 AcpiGbl_LoHistory = 0;
150UINT16 AcpiGbl_NumHistory = 0;
151UINT16 AcpiGbl_NextHistoryIndex = 0;
152UINT32 AcpiGbl_NextCmdNum = 1;
140static HISTORY_INFO AcpiGbl_HistoryBuffer[HISTORY_SIZE];
141static UINT16 AcpiGbl_LoHistory = 0;
142static UINT16 AcpiGbl_NumHistory = 0;
143static UINT16 AcpiGbl_NextHistoryIndex = 0;
144static UINT32 AcpiGbl_NextCmdNum = 1;
153
154
155/*******************************************************************************
156 *
157 * FUNCTION: AcpiDbAddToHistory
158 *
159 * PARAMETERS: CommandLine - Command to add
160 *

--- 139 unchanged lines hidden ---
145
146
147/*******************************************************************************
148 *
149 * FUNCTION: AcpiDbAddToHistory
150 *
151 * PARAMETERS: CommandLine - Command to add
152 *

--- 139 unchanged lines hidden ---