Espaços nominais
Variantes
Acções

std::defer_lock_t, std::try_to_lock_t, std::adopt_lock_t

Da cppreference.com
< cpp‎ | thread

 
 
Biblioteca de suporte a discussão
Threads
Original:
Threads
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
this_thread namespace
Original:
this_thread namespace
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Exclusão mútua
Original:
Mutual exclusion
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Gestão de bloqueio genérico
Original:
Generic lock management
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
defer_lock_ttry_to_lock_tadopt_lock_t
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Variáveis ​​de condição
Original:
Condition variables
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Futuros
Original:
Futures
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
 
struct defer_lock_t { };
(desde C++11)
struct try_to_lock_t { };
(desde C++11)
struct adopt_lock_t { };
(desde C++11)
std::defer_lock_t, std::try_to_lock_t e std::adopt_lock_t tipos struct tag vazios usados ​​para especificar bloqueio estratégia para std::lock_guard e std::unique_lock.
Original:
std::defer_lock_t, std::try_to_lock_t and std::adopt_lock_t are empty struct tag types used to specify locking strategy for std::lock_guard and std::unique_lock.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


Tipo
Original:
Type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Effect(s)
defer_lock_t
não adquirem a propriedade do mutex
Original:
do not acquire ownership of the mutex
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
try_to_lock_t
tentar adquirir a propriedade do mutex sem bloqueio
Original:
try to acquire ownership of the mutex without blocking
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
adopt_lock_t
assumir o segmento de chamada já tem a propriedade do mutex
Original:
assume the calling thread already has ownership of the mutex
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Exemplo

#include <mutex>
#include <thread>
 
struct bank_account {
    explicit bank_account(int balance) : balance(balance) {}
    int balance;
    std::mutex m;
};
 
void transfer(bank_account &from, bank_account &to, int amount)
{
    // attempt to lock both mutexes without deadlock
    std::lock(from.m, to.m);
 
    // make sure both already-locked mutexes are unlocked when 
    // we're done; if we just used the lock_guard without std::lock
    // and std::adopt_lock, we might deadlock with other calls to transfer
    std::lock_guard lock1(from.m, std::adopt_lock);
    std::lock_guard lock2(to.m, std::adopt_lock);
 
    from.balance -= amount;
    to.balance += amount;
}
 
int main()
{
    bank_account my_account(100);
    bank_account your_account(50);
 
    std::thread t1(transfer, my_account, your_account, 10);
    std::thread t2(transfer, your_account, my_account, 5);
 
    t1.join();
    t2.join();
}


[editar] Veja também

constantes tag usada para especificar estratégia de bloqueio
Original:
tag constants used to specify locking strategy
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante) [edit]
constrói um lock_guard, opcionalmente bloquear o mutex dado
Original:
constructs a lock_guard, optionally locking the given mutex
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(of std::lock_guard função pública membro) [edit]
constrói um unique_lock, opcionalmente bloquear o mutex fornecido
Original:
constructs a unique_lock, optionally locking the supplied mutex
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(of std::unique_lock função pública membro) [edit]