utdebug.c (38fd2c202a3d82bc12430bce5789fa2c2a406f71) | utdebug.c (5076f00504c62489b63197392856b9bad1ebcbd5) |
---|---|
1/****************************************************************************** 2 * 3 * Module Name: utdebug - Debug print/trace routines 4 * 5 *****************************************************************************/ 6 7/* 8 * Copyright (C) 2000 - 2013, Intel Corp. --- 180 unchanged lines hidden (view full) --- 189 } 190 191 /* 192 * Display the module name, current line number, thread ID (if requested), 193 * current procedure nesting level, and the current procedure name 194 */ 195 acpi_os_printf("%9s-%04ld ", module_name, line_number); 196 | 1/****************************************************************************** 2 * 3 * Module Name: utdebug - Debug print/trace routines 4 * 5 *****************************************************************************/ 6 7/* 8 * Copyright (C) 2000 - 2013, Intel Corp. --- 180 unchanged lines hidden (view full) --- 189 } 190 191 /* 192 * Display the module name, current line number, thread ID (if requested), 193 * current procedure nesting level, and the current procedure name 194 */ 195 acpi_os_printf("%9s-%04ld ", module_name, line_number); 196 |
197#ifdef ACPI_EXEC_APP | 197#ifdef ACPI_APPLICATION |
198 /* | 198 /* |
199 * For acpi_exec only, emit the thread ID and nesting level. | 199 * For acpi_exec/iASL only, emit the thread ID and nesting level. |
200 * Note: nesting level is really only useful during a single-thread 201 * execution. Otherwise, multiple threads will keep resetting the 202 * level. 203 */ 204 if (ACPI_LV_THREADS & acpi_dbg_level) { 205 acpi_os_printf("[%u] ", (u32)thread_id); 206 } 207 --- 356 unchanged lines hidden --- | 200 * Note: nesting level is really only useful during a single-thread 201 * execution. Otherwise, multiple threads will keep resetting the 202 * level. 203 */ 204 if (ACPI_LV_THREADS & acpi_dbg_level) { 205 acpi_os_printf("[%u] ", (u32)thread_id); 206 } 207 --- 356 unchanged lines hidden --- |