Closed bbarker closed 10 months ago
Hi and thanks for the PR,
It does not look correct though. What problems would this solve that you can't solve by putting PCM into an Arc<Mutex<PCM>>?
Arc<Mutex<PCM>>
Yes, you are right - I actually had Arc<Mutex<...>> at a higher level, but forgot that I'd added a [#derive(Clone)] in between there and PCM. Thanks!
[#derive(Clone)]
PCM
Hi and thanks for the PR,
It does not look correct though. What problems would this solve that you can't solve by putting PCM into an
Arc<Mutex<PCM>>
?