ue,mac,nr: fix another race in MAC

This commit is contained in:
Andre Puschmann 2022-04-19 12:28:58 +02:00
parent b157490cb3
commit b2e0481849
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ private:
std::atomic<bool> started = {false};
// Boolean to determine if need to decode SI-RNTI
bool search_bcch = false;
std::atomic<bool> search_bcch = {false};
ue_rnti rntis; // thread-safe helper to store RNTIs, contention ID, etc
bool contention_res_successful;