Freigeben über


C26160

Warnung C26160: Aufrufer, der möglicherweise Sperre <lock> vor aufrufenden Funktion <func>nicht enthalten kann.

Warnung C26160 ähnelt warnendem C26110, dass der Vertrauensbereich ist niedriger.Beispielsweise enthält möglicherweise die Funktion Anmerkungsfehler.

Beispiel

Im folgenden Code wird die Warnung C26160.

struct Account
{
    _Guarded_by_(cs) int balance;
    CRITICAL_SECTION cs;

    _No_competing_thread_ void Init() 
    {
        balance = 0; // OK
    }

    _Requires_lock_held_(this->cs) void FuncNeedsLock();

    _No_competing_thread_ void FuncInitCallOk()
        // this annotation requires this function is called 
        // single-threaded, therefore we don't need to worry 
        // about the lock
    {
        FuncNeedsLock(); // OK, single threaded
    } 

    void FuncInitCallBad() // No annotation provided, analyzer generates warning
    {
        FuncNeedsLock(); // Warning C26160
    }

};

Im folgenden Code wird eine Projektmappe im vorherigen Beispiel.

struct Account
{
    _Guarded_by_(cs) int balance;
    CRITICAL_SECTION cs;

    _No_competing_thread_ void Init()
    {
        balance = 0; // OK
    }

    _Requires_lock_held_(this->cs) void FuncNeedsLock();

    _No_competing_thread_ void FuncInitCallOk()
        // this annotation requires this function is called 
        // single-threaded, therefore we don't need to worry 
        // about the lock
    {
        FuncNeedsLock(); // OK, single threaded
    } 

    void FuncInitCallBadFixed() // this function now properly acquires (and releases) the lock
    {
        EnterCriticalSection(&this->cs);
        FuncNeedsLock(); 
        LeaveCriticalSection(&this->cs);
    }
};