Re: Shared mutex pool

2016-10-03 Thread Jonathan Wakely
On 28/09/16 21:34 +0200, François Dumont wrote: Hi Here is the patch to share a mutex pool between debug mode and shared_ptr implementation. It saves 392 bytes on generated .so and will make sure that fixing false sharing will impact both usages. I preferred to leave implementation in

Shared mutex pool

2016-09-28 Thread François Dumont
Hi Here is the patch to share a mutex pool between debug mode and shared_ptr implementation. It saves 392 bytes on generated .so and will make sure that fixing false sharing will impact both usages. I preferred to leave implementation in shared_ptr.cc to avoid introducing another tra