How do I find a good middle way to make this library safe for concurrent operations
I’ve made a little library called SignalR.EventAggregatorProxy
How do I find a good middle way to make this library safe for concurrent operations
I’ve made a little library called SignalR.EventAggregatorProxy
Are mutexes assigned to specific regions of memory?
I’m currently reading C++ Concurrency in Action by Anthony Williams and I’m facing an obstacle in thought.
Are mutexes assigned to specific regions of memory?
I’m currently reading C++ Concurrency in Action by Anthony Williams and I’m facing an obstacle in thought.
Is it possible to perform mutual exclusion of threads without OS support?
I suppose you could adapt distributed mutual exclusion algorithms (Ricart/Agrawala, etc), but aside from these more exotic approaches, are you required to use primitives provided by the OS in order to achieve mutual exclusion?