Subversion Repositories Kolibri OS

Rev

Rev 1498 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 7... Line 7...
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
 *
16
 * 2.1. This is your license from Intel Corp. under its intellectual property
16
 * 2.1. This is your license from Intel Corp. under its intellectual property
Line 511... Line 511...
511
    if ((OwnerThread->ThreadId != WalkState->Thread->ThreadId) &&
511
    if ((OwnerThread->ThreadId != WalkState->Thread->ThreadId) &&
512
        (ObjDesc != AcpiGbl_GlobalLockMutex))
512
        (ObjDesc != AcpiGbl_GlobalLockMutex))
513
    {
513
    {
514
        ACPI_ERROR ((AE_INFO,
514
        ACPI_ERROR ((AE_INFO,
515
            "Thread %p cannot release Mutex [%4.4s] acquired by thread %p",
515
            "Thread %u cannot release Mutex [%4.4s] acquired by thread %u",
516
            ACPI_CAST_PTR (void, WalkState->Thread->ThreadId),
516
            (UINT32) WalkState->Thread->ThreadId,
517
            AcpiUtGetNodeName (ObjDesc->Mutex.Node),
517
            AcpiUtGetNodeName (ObjDesc->Mutex.Node),
518
            ACPI_CAST_PTR (void, OwnerThread->ThreadId)));
518
            (UINT32) OwnerThread->ThreadId));
519
        return_ACPI_STATUS (AE_AML_NOT_OWNER);
519
        return_ACPI_STATUS (AE_AML_NOT_OWNER);
520
    }
520
    }
521
 
521
 
Line 522... Line 522...
522
    /*
522
    /*
523
     * The sync level of the mutex must be equal to the current sync level. In
523
     * The sync level of the mutex must be equal to the current sync level. In