DLL thread safety

前端 未结 3 887
南方客
南方客 2021-01-26 06:52

I am developing a DLL in MS VC express c++ that will be loaded in multiple client applications at the same time, the DLL has a shared memory space created using data_seg(\

3条回答
  •  自闭症患者
    2021-01-26 07:36

    I think that Boost.Interprocess is exactly what you need. It will solve both, the synchronization problem, and the one that Jim Brissom said in his comment that you even haven't thought about yet.

提交回复
热议问题