Internals: Remove mutex, part of last commit

This commit is contained in:
Wilson Snyder 2026-04-04 18:10:47 -04:00
parent 33493cf5b4
commit 5b9cd12530
1 changed files with 1 additions and 1 deletions

View File

@ -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();