Fix StlPlayer crash at end

This commit is contained in:
2025-05-21 17:18:32 +02:00
parent 565e725cf6
commit 11049f6a26

View File

@@ -68,6 +68,12 @@ public:
TraceType traceType,
bool storageEnabled);
//TODO temporary fix
~StlPlayer() {
if (parserThread.joinable())
parserThread.join();
}
Request nextRequest() override;
sc_core::sc_time nextTrigger() override;
uint64_t totalRequests() override { return numberOfLines; }