Skip to content

Commit 7210384

Browse files
committed
Revert "drt: fix datarace on frNet::modified_ bool"
This reverts commit 881e65a. Signed-off-by: osamahammad21 <[email protected]>
1 parent 36dbf06 commit 7210384

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/drt/src/db/obj/frNet.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#pragma once
55

66
#include <algorithm>
7-
#include <atomic>
87
#include <list>
98
#include <memory>
109
#include <utility>
@@ -254,7 +253,7 @@ class frNet : public frBlockObject
254253
std::vector<std::unique_ptr<frGuide>> guides_;
255254
std::vector<frRect> orig_guides_;
256255
odb::dbSigType type_{odb::dbSigType::SIGNAL};
257-
std::atomic<bool> modified_{false};
256+
bool modified_{false};
258257
bool isFakeNet_{false}; // indicate floating PG nets
259258
frNonDefaultRule* ndr_{nullptr};
260259
int absPriorityLvl_{0}; // absolute priority level: will be checked in net

0 commit comments

Comments
 (0)