Remove comment about trying read-write lock
The stream timingHash is read by getStreamStats() while it is read/write for processRecords(), the latter is a more frequent operation so there's no real benefit of using a read-write lock instead of simple mutex.
This commit is contained in:
parent
d3be505a0c
commit
3c6632b6a2
@ -86,7 +86,7 @@ private:
|
||||
typedef uint GuidKey;
|
||||
typedef QHash<GuidKey, Timing> PortTiming;
|
||||
QHash<PortIdKey, PortTiming*> timing_;
|
||||
QMutex timingLock_; // FIXME: change to RW lock?
|
||||
QMutex timingLock_;
|
||||
|
||||
QTimer *timer_; // Periodic timer to process tx/rx records
|
||||
QTimer *gcTimer_; // Garbage collection for stale tx records
|
||||
|
Loading…
Reference in New Issue
Block a user