зеркало из https://github.com/mozilla/gecko-dev.git
Bug 990392: Make |sIsPairing| non-atomic, r=echou
|sIsPairing| is not a shared resource. No need to make it atomic.
This commit is contained in:
Родитель
406133ad5e
Коммит
710a04c9cc
|
@ -306,7 +306,7 @@ static const int sWaitingForAdapterNameInterval = 1000; // unit: ms
|
|||
static StaticAutoPtr<RawDBusConnection> sDBusConnection;
|
||||
|
||||
// Keep the pairing requests.
|
||||
static Atomic<int32_t> sIsPairing(0);
|
||||
static unsigned int sIsPairing = 0;
|
||||
|
||||
static nsDataHashtable<nsStringHashKey, DBusMessage* >* sPairingReqTable;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче