rtlog-cpp icon indicating copy to clipboard operation
rtlog-cpp copied to clipboard

Allow configuration to use a MPSC queue instead of only a SPSC

Open cjappl opened this issue 2 years ago • 0 comments

Currently, it's required that there is only one thread doing RT Logging (enqueuing ), and another doing the actual loging (dequeing)

ReaderWriterQueue is SPSC, we could possible use ConcurrentQueue by the same author to support multiple realtime threads.

cjappl avatar May 13 '23 22:05 cjappl