Native version of VolatileRead and VolatileWrite
by Alex Ivanoff
 |
REPLY TO AUTHOR
|
 |
|
|
 |
REPLY TO GROUP
|
 |
|
It is a bit off-topic, but I hoped you would not mind. Is the following correct?
C#:
Int32 val = Thread::VolatileRead(ref valueToRead);
C++:
long val;
::InterlockedExchange(&val, valueToRead);
C#:
Int32 val;
Thread::VolatileWrite(&val, valueToWrite);
C++:
long val;
::InterlockedExchange(&val, valueToWrite);
Bookmark with:
Delicious
Digg
reddit
Facebook
StumbleUpon
Related Messages
opensubscriber is not affiliated with the authors of this message nor responsible for its content.
|