Two Windows processes have memory mapped the same shared file. If the file consists of counters, is it appropriate to use the Interlocked* functions (like InterlockedIncrement) to update those counters? Will those synchronize access across processes? Or do I need to use something heavier, like a mutex? Or perhaps the shared-memory mechanism itself ensures consistent views.
|
|
|||
|
|
|
From MSDN:
So, yes, it is save with your shared memory approach. |
|||
|
|
|
The interlocked functions are intended for exactly that type of use. From http://msdn.microsoft.com/en-us/library/ms684122.aspx:
Of course, if you need to have more than one item updated atomically, you'll need to go with a mutex or some other synchronization object that works across processes. There's nothing built-in to the shared memory mechanism to provide synchronization to access to the shared memory - you'll need to use the interlocked functions or a synchronization object. |
|||||||||||||||
|