Subversion Repositories Kolibri OS

Rev

Rev 1498 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 6... Line 6...
6
 
6
 
7
/******************************************************************************
7
/******************************************************************************
8
 *
8
 *
9
 * 1. Copyright Notice
9
 * 1. Copyright Notice
10
 *
10
 *
11
 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
11
 * Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
12
 * All rights reserved.
12
 * All rights reserved.
13
 *
13
 *
14
 * 2. License
14
 * 2. License
15
 *
15
 *
Line 277... Line 277...
277
    if (ThreadId != AcpiGbl_PrevThreadId)
277
    if (ThreadId != AcpiGbl_PrevThreadId)
278
    {
278
    {
279
        if (ACPI_LV_THREADS & AcpiDbgLevel)
279
        if (ACPI_LV_THREADS & AcpiDbgLevel)
280
        {
280
        {
281
            AcpiOsPrintf (
281
            AcpiOsPrintf (
282
                "\n**** Context Switch from TID %p to TID %p ****\n\n",
282
                "\n**** Context Switch from TID %u to TID %u ****\n\n",
283
                ACPI_CAST_PTR (void, AcpiGbl_PrevThreadId),
283
                (UINT32) AcpiGbl_PrevThreadId, (UINT32) ThreadId);
284
                ACPI_CAST_PTR (void, ThreadId));
-
 
285
        }
284
        }
Line 286... Line 285...
286
 
285
 
287
        AcpiGbl_PrevThreadId = ThreadId;
286
        AcpiGbl_PrevThreadId = ThreadId;
Line 293... Line 292...
293
     */
292
     */
294
    AcpiOsPrintf ("%8s-%04ld ", ModuleName, LineNumber);
293
    AcpiOsPrintf ("%8s-%04ld ", ModuleName, LineNumber);
Line 295... Line 294...
295
 
294
 
296
    if (ACPI_LV_THREADS & AcpiDbgLevel)
295
    if (ACPI_LV_THREADS & AcpiDbgLevel)
297
    {
296
    {
298
        AcpiOsPrintf ("[%p] ", ACPI_CAST_PTR (void, ThreadId));
297
        AcpiOsPrintf ("[%u] ", (UINT32) ThreadId);
Line 299... Line 298...
299
    }
298
    }
300
 
299