InterlockedIncrement

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This function increments the value of the specified 32-bit variable and checks the resulting value. InterlockedIncrement prevents more than one thread from using the InterlockedDecrement function or InterlockedIncrement function to access the same variable simultaneously.

Syntax

LONG InterlockedIncrement(
  LPLONG lpAddend
);

Parameters

  • lpAddend
    [in] Pointer to the LONG variable to increment.

Return Value

Incremented value.

Remarks

The functions InterlockedIncrement, InterlockedCompareExchange, InterlockedDecrement, InterlockedExchange, and InterlockedExchangeAdd provide a simple mechanism for synchronizing access to a variable that is shared by multiple threads. The threads of different processes can use this mechanism if the variable is in shared memory.

The variable pointed to by the lpAddend parameter must be aligned on a 32-bit boundary.

Requirements

Header winbase.h
Library coredll.lib
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

Synchronization Functions
InterlockedCompareExchange
InterlockedExchangeAdd
InterlockedDecrement
InterlockedExchange