Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
Interlocked functions synchronize access to a variable that is shared by multiple threads.
Their purpose is to prevent a thread from being preempted while it is incrementing or checking a variable.
The threads of different processes can use these functions as long as their variables share memory.
The following table describes the interlocked functions that Windows Mobile supports.
Function | Description |
---|---|
Increments a shared variable, and checks the resulting value. |
|
Decrements a shared variable, and checks the resulting value. |
|
Exchanges the values of specified variables. |
|
Exchanges the values of specified variables if one variable is set to a specified value. |
|
Compares the values of specified values and exchange the values based on the outcome. |
|
Performs an atomic addition of an increment value to an addend value. |
|
Performs an atomic comparison of specified values, and exchanges the values, based on the outcome of the comparison. |
|
Atomically exchanges a pair of values. |