Deleted Added
full compact
dbfileio.c (71867) dbfileio.c (73561)
1/*******************************************************************************
2 *
3 * Module Name: dbfileio - Debugger file I/O commands. These can't usually
4 * be used when running the debugger in Ring 0 (Kernel mode)
1/*******************************************************************************
2 *
3 * Module Name: dbfileio - Debugger file I/O commands. These can't usually
4 * be used when running the debugger in Ring 0 (Kernel mode)
5 * $Revision: 37 $
5 * $Revision: 38 $
6 *
7 ******************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp.

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

235 AcpiDbCloseDebugFile ();
236 DebugFile = fopen (Name, "w+");
237 if (DebugFile)
238 {
239 AcpiOsPrintf ("Debug output file %s opened\n", Name);
240 STRCPY (DebugFilename, Name);
241 OutputToFile = TRUE;
242 }
6 *
7 ******************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp.

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

235 AcpiDbCloseDebugFile ();
236 DebugFile = fopen (Name, "w+");
237 if (DebugFile)
238 {
239 AcpiOsPrintf ("Debug output file %s opened\n", Name);
240 STRCPY (DebugFilename, Name);
241 OutputToFile = TRUE;
242 }
243 else
244 {
245 AcpiOsPrintf ("Could not open debug file %s\n", Name);
246 }
243
244#endif
245}
246
247
248#ifdef ACPI_APPLICATION
249/*******************************************************************************
250 *

--- 238 unchanged lines hidden ---
247
248#endif
249}
250
251
252#ifdef ACPI_APPLICATION
253/*******************************************************************************
254 *

--- 238 unchanged lines hidden ---