We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e9865 commit 36dbf06Copy full SHA for 36dbf06
src/drt/src/db/obj/frNet.h
@@ -4,6 +4,7 @@
4
#pragma once
5
6
#include <algorithm>
7
+#include <atomic>
8
#include <list>
9
#include <memory>
10
#include <utility>
@@ -253,7 +254,7 @@ class frNet : public frBlockObject
253
254
std::vector<std::unique_ptr<frGuide>> guides_;
255
std::vector<frRect> orig_guides_;
256
odb::dbSigType type_{odb::dbSigType::SIGNAL};
- bool modified_{false};
257
+ std::atomic<bool> modified_{false};
258
bool isFakeNet_{false}; // indicate floating PG nets
259
frNonDefaultRule* ndr_{nullptr};
260
int absPriorityLvl_{0}; // absolute priority level: will be checked in net
0 commit comments