mirror of
https://github.com/verilator/verilator.git
synced 2026-09-07 01:11:01 +02:00
Internals: Remove mutex, part of last commit
This commit is contained in:
@@ -233,7 +233,7 @@ private:
|
||||
}
|
||||
*m_logfp << "# Verilator solver log\n";
|
||||
}
|
||||
void log(const std::string& prefix, const std::string& text) VL_MT_SAFE_EXCLUDES(m_mutex) {
|
||||
void log(const std::string& prefix, const std::string& text) {
|
||||
if (VL_LIKELY(!m_logfp.get()) || text.empty()) return;
|
||||
if (m_logLastTime != Verilated::threadContextp()->time()) {
|
||||
m_logLastTime = Verilated::threadContextp()->time();
|
||||
|
||||
Reference in New Issue
Block a user