InterlockedTestExchange (Compact 2013)

3/28/2014

This function is an interlocked function that performs a conditional setting of a variable.

Syntax

LONG WINAPI InterlockedTestExchange(
  LPLONG Target,
  LONG OldValue,
  LONG NewValue
);

Parameters

  • Target
    [in, out] Pointer to the LONG variable to check and set.
  • OldValue
    [in] Value to check against.
  • NewValue
    [in] Value to set to conditionally.

Return Value

The original value pointed to by Target at the time of the call indicates success.

Remarks

The InterlockedTestExchange function is an interlocked function. In other words, it can be considered atomic. It checks to see if the value pointed to by Target is equal to OldValue. If so, it sets Target to NewValue. Because InterlockedTestExchange returns the old value pointed to by Target, if the return value is OldValue, then InterlockedTestExchange succeeded and set the value pointed to by Target to NewValue. Otherwise, it failed.

Requirements

Header

winbase.h

Library

coredll.lib

See Also

Reference

Synchronization Functions